]> git.ozlabs.org Git - ppp.git/blob - pppd/Makefile.bsd
minor bug fix
[ppp.git] / pppd / Makefile.bsd
1 #       $Id: Makefile.bsd,v 1.13 1996/10/08 04:33:33 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 MAN8=   pppd.8
14 BINMODE=4555
15 BINOWN= root
16
17 LDADD=  -lcrypt -lutil
18 DPADD=  ${LIBCRYPT} ${LIBUTIL}
19
20 .include <bsd.prog.mk>