aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-07-20 06:20:32 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-07-20 06:20:32 +0000
commit90e655ea4e3750a48b8b350adb823f0ace818f21 (patch)
treefb97d8f0fea8f93b6e8bb70b86e003cf5cbc2b79 /usr.sbin/ppp
parent6161544ca763d8c1432b4b68ab5e84407d048e83 (diff)
downloadsrc-90e655ea4e3750a48b8b350adb823f0ace818f21.tar.gz
src-90e655ea4e3750a48b8b350adb823f0ace818f21.zip
Perform a major cleanup of the usr.sbin Makefiles.
These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
Notes
Notes: svn path=/head/; revision=80029
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r--usr.sbin/ppp/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/ppp/Makefile b/usr.sbin/ppp/Makefile
index c4244490c039..ccbe6a6c20dc 100644
--- a/usr.sbin/ppp/Makefile
+++ b/usr.sbin/ppp/Makefile
@@ -1,14 +1,13 @@
# $FreeBSD$
PROG= ppp
+MAN= ppp.8
SRCS= acf.c arp.c async.c auth.c bundle.c cbcp.c ccp.c chap.c chat.c \
command.c datalink.c deflate.c defs.c exec.c filter.c fsm.c hdlc.c \
iface.c ip.c ipcp.c iplist.c lcp.c link.c log.c lqr.c main.c \
mbuf.c mp.c pap.c physical.c pred.c probe.c prompt.c proto.c route.c \
server.c sig.c slcompress.c sync.c systems.c tcp.c tcpmss.c \
throughput.c timer.c tty.c tun.c udp.c vjcomp.c
-LDADD+= -lcrypt -lmd -lutil -lz
-DPADD+= ${LIBCRYPT} ${LIBMD} ${LIBUTIL} ${LIBZ}
.if defined(NOSUID) || defined(PPP_NOSUID)
BINMODE=554
.else
@@ -16,7 +15,9 @@ BINMODE=4554
BINOWN= root
.endif
BINGRP= network
-MAN= ppp.8
+
+LDADD= -lcrypt -lmd -lutil -lz
+DPADD= ${LIBCRYPT} ${LIBMD} ${LIBUTIL} ${LIBZ}
.if defined(RELEASE_CRUNCH)
CFLAGS+=-DRELEASE_CRUNCH