ppp/pppd/Makefile.bsd
James Carlson d741a3b912 Added EAP support with MD5-Challenge and SRP-SHA1 methods. Tested
on Linux (with both methods) and on Solaris (just MD5-Challenge).
Fixed several Makefiles that were missing references to required
modules such as tty.o.
2002-11-02 19:48:13 +00:00

21 lines
596 B
Makefile

# $Id: Makefile.bsd,v 1.17 2002/11/02 19:48:12 carlsonj Exp $
BINDIR?= /usr/sbin
# -D_BITYPES is for FreeBSD, which doesn't define anything to
# tell us that u_int32_t gets defined if <sys/types.h> is included.
# Remove for older *BSD systems for which this isn't true.
CFLAGS+= -g -I../include -DHAVE_PATHS_H -D_BITYPES
PROG= pppd
SRCS= main.c magic.c fsm.c lcp.c ipcp.c upap.c chap.c md5.c ccp.c \
ecp.c demand.c auth.c options.c utils.c sys-bsd.c eap.c tty.c
MAN= pppd.cat8
MAN8= pppd.8
BINMODE=4555
BINOWN= root
LDADD= -lcrypt -lutil
DPADD= ${LIBCRYPT} ${LIBUTIL}
.include <bsd.prog.mk>