mirror of
https://github.com/paulusmack/ppp.git
synced 2024-11-27 21:43:44 +08:00
d741a3b912
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.
21 lines
596 B
Makefile
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>
|