summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/Makefile
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1998-05-21 21:49:08 +0000
committerbrian <brian@FreeBSD.org>1998-05-21 21:49:08 +0000
commit56df88b778aee0e60678672b107a48a8ea05cb48 (patch)
tree13b88ca17b38e787c84b0cd242677b3c3c0b93c3 /usr.sbin/ppp/Makefile
parente077fa331b8a428923ded3a95d0b8d47084cf670 (diff)
downloadFreeBSD-src-56df88b778aee0e60678672b107a48a8ea05cb48.zip
FreeBSD-src-56df88b778aee0e60678672b107a48a8ea05cb48.tar.gz
MFMP: Make ppp multilink capable.
See the file README.changes, and re-read the man page.
Diffstat (limited to 'usr.sbin/ppp/Makefile')
-rw-r--r--usr.sbin/ppp/Makefile28
1 files changed, 18 insertions, 10 deletions
diff --git a/usr.sbin/ppp/Makefile b/usr.sbin/ppp/Makefile
index 4969b34..5ad1c9d 100644
--- a/usr.sbin/ppp/Makefile
+++ b/usr.sbin/ppp/Makefile
@@ -1,19 +1,27 @@
-# $Id: Makefile,v 1.35 1998/01/17 14:21:21 brian Exp $
+# $Id: Makefile,v 1.36.2.12 1998/05/04 03:01:34 brian Exp $
PROG= ppp
-SRCS= arp.c async.c auth.c ccp.c chap.c chat.c command.c deflate.c \
- defs.c filter.c fsm.c hdlc.c id.c ip.c ipcp.c iplist.c lcp.c \
- log.c lqr.c main.c mbuf.c modem.c os.c pap.c phase.c \
- pred.c route.c server.c sig.c slcompress.c systems.c throughput.c \
- timer.c tun.c vars.c vjcomp.c
-CFLAGS+=-Wall
-LDADD+= -lmd -lcrypt -lutil -lz
-DPADD+= ${LIBMD} ${LIBCRYPT} ${LIBUTIL} ${LIBZ}
-MAN8= ppp.8
+SRCS= arp.c async.c auth.c bundle.c ccp.c chap.c chat.c command.c \
+ datalink.c deflate.c defs.c filter.c fsm.c hdlc.c id.c ip.c \
+ ipcp.c iplist.c lcp.c link.c log.c lqr.c main.c mbuf.c modem.c \
+ mp.c pap.c physical.c pred.c prompt.c route.c server.c sig.c \
+ slcompress.c systems.c throughput.c timer.c tun.c vjcomp.c
+CFLAGS+=-Wall -Wpointer-arith
+LDADD+= -lutil -lz
+DPADD+= ${LIBUTIL} ${LIBZ}
BINMODE=4550
BINOWN= root
BINGRP= network
+OPSYS!= uname -s
+.if (${OPSYS} == "OpenBSD")
+MAN= ppp.8
+.else
+MAN8= ppp.8
+LDADD+= -lmd -lcrypt
+DPADD+= ${LIBMD} ${LIBCRYPT}
+.endif
+
.if defined(RELEASE_CRUNCH)
CFLAGS+=-DRELEASE_CRUNCH
.endif
OpenPOWER on IntegriCloud