]> git.ozlabs.org Git - ppp.git/blob - pppd/Makefile.bsd
remove extraneous NOTSUSER def
[ppp.git] / pppd / Makefile.bsd
1 #       $Id: Makefile.bsd,v 1.12 1996/08/28 06:37:41 paulus Exp $
2
3 BINDIR?= /usr/sbin
4 # -D_BITYPES is for FreeBSD, which doesn't define anything to
5 # tell us that u_int32_t gets defined if <sys/types.h> is included.
6 # Remove for older *BSD systems for which this isn't true.
7 CFLAGS+= -g -I.. -DHAVE_PATHS_H -D_BITYPES
8
9 PROG=   pppd
10 SRCS=   main.c magic.c fsm.c lcp.c ipcp.c upap.c chap.c md5.c ccp.c \
11         demand.c auth.c options.c sys-bsd.c
12 MAN=    pppd.cat8
13 # The next line is for NetBSD-1.0 and other older *BSD systems.
14 MAN8=   pppd.0
15 BINMODE=4555
16 BINOWN= root
17
18 LDADD=  -lcrypt -lutil
19 DPADD=  ${LIBCRYPT} ${LIBUTIL}
20
21 .include <bsd.prog.mk>