1998-01-29 00:44:15 +00:00
|
|
|
# $Id: Makefile,v 1.35 1998/01/17 14:21:21 brian Exp $
|
1995-01-31 06:29:58 +00:00
|
|
|
|
|
|
|
PROG= ppp
|
1997-12-03 10:23:54 +00:00
|
|
|
SRCS= arp.c async.c auth.c ccp.c chap.c chat.c command.c deflate.c \
|
1997-12-13 02:37:33 +00:00
|
|
|
defs.c filter.c fsm.c hdlc.c id.c ip.c ipcp.c iplist.c lcp.c \
|
1997-11-22 03:37:54 +00:00
|
|
|
log.c lqr.c main.c mbuf.c modem.c os.c pap.c phase.c \
|
1997-11-18 14:52:08 +00:00
|
|
|
pred.c route.c server.c sig.c slcompress.c systems.c throughput.c \
|
|
|
|
timer.c tun.c vars.c vjcomp.c
|
1997-11-22 03:37:54 +00:00
|
|
|
CFLAGS+=-Wall
|
1997-12-03 10:23:54 +00:00
|
|
|
LDADD+= -lmd -lcrypt -lutil -lz
|
|
|
|
DPADD+= ${LIBMD} ${LIBCRYPT} ${LIBUTIL} ${LIBZ}
|
1995-01-31 06:29:58 +00:00
|
|
|
MAN8= ppp.8
|
1997-08-31 20:18:03 +00:00
|
|
|
BINMODE=4550
|
1995-01-31 06:29:58 +00:00
|
|
|
BINOWN= root
|
1997-09-04 00:38:22 +00:00
|
|
|
BINGRP= network
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1998-01-29 00:44:15 +00:00
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
|
|
CFLAGS+=-DRELEASE_CRUNCH
|
|
|
|
.endif
|
|
|
|
|
1998-01-17 14:21:21 +00:00
|
|
|
.if defined(NOALIAS) || defined(RELEASE_CRUNCH)
|
1997-11-22 03:37:54 +00:00
|
|
|
CFLAGS+=-DNOALIAS
|
|
|
|
.else
|
|
|
|
SRCS+= alias_cmd.c loadalias.c
|
|
|
|
.endif
|
|
|
|
|
1998-01-17 14:21:21 +00:00
|
|
|
.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE) && !defined(RELEASE_CRUNCH)
|
1997-09-25 00:52:37 +00:00
|
|
|
CFLAGS+=-DHAVE_DES
|
|
|
|
SRCS+= chap_ms.c
|
|
|
|
LDADD+= -ldes
|
|
|
|
DPADD+= ${LIBDES}
|
|
|
|
.endif
|
|
|
|
|
1998-01-17 14:21:21 +00:00
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
|
|
# We must create these objects because the crunchgen will link them,
|
|
|
|
# and we don't want any unused symbols to spoil the final link.
|
|
|
|
SRCS+= alias_cmd.c loadalias.c chap_ms.c
|
|
|
|
chap_ms.o alias_cmd.o loadalias.o:
|
|
|
|
>null_$*.c
|
|
|
|
cc -c -o $@ null_$*.c
|
|
|
|
.endif
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
.include <bsd.prog.mk>
|