1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
20 lines
570 B
Makefile
20 lines
570 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ppp
|
|
SRCS= async.c auth.c ccp.c chap.c chat.c command.c filter.c fsm.c hdlc.c \
|
|
ip.c ipcp.c lcp.c lqr.c log.c main.c mbuf.c modem.c os.c \
|
|
pap.c pred.c route.c slcompress.c timer.c systems.c uucplock.c vars.c \
|
|
vjcomp.c arp.c alias.c alias_db.c alias_ftp.c alias_util.c \
|
|
passwdauth.c
|
|
#CFLAGS+= -DHAVE_SHELL_CMD_WITH_ANY_MODE
|
|
CFLAGS += -Wall -DUSE_PERROR -DMSEXT -DPASSWDAUTH
|
|
LDADD += -lmd -lcrypt -lutil
|
|
DPADD += ${LIBMD} ${LIBCRYPT} ${LIBUTIL}
|
|
MAN8= ppp.8
|
|
BINMODE=4555
|
|
BINOWN= root
|
|
|
|
.PATH: ${.CURDIR}/../../sbin/startslip
|
|
|
|
.include <bsd.prog.mk>
|