1998-05-04 03:01:34 +00:00
|
|
|
# $Id: Makefile,v 1.36.2.11 1998/04/25 10:48:41 brian Exp $
|
1998-01-29 00:44:16 +00:00
|
|
|
|
|
|
|
PROG= ppp
|
1998-04-03 19:21:56 +00:00
|
|
|
SRCS= arp.c async.c auth.c bundle.c ccp.c chap.c chat.c command.c \
|
1998-04-03 19:26:02 +00:00
|
|
|
datalink.c deflate.c defs.c filter.c fsm.c hdlc.c id.c ip.c \
|
1998-04-03 19:21:56 +00:00
|
|
|
ipcp.c iplist.c lcp.c link.c log.c lqr.c main.c mbuf.c modem.c \
|
|
|
|
mp.c pap.c physical.c pred.c prompt.c route.c server.c sig.c \
|
1998-04-16 00:26:21 +00:00
|
|
|
slcompress.c systems.c throughput.c timer.c tun.c vjcomp.c
|
1998-01-29 00:49:32 +00:00
|
|
|
CFLAGS+=-Wall -Wpointer-arith
|
1998-04-25 10:49:52 +00:00
|
|
|
LDADD+= -lutil -lz
|
1998-05-04 03:01:34 +00:00
|
|
|
DPADD+= ${LIBUTIL} ${LIBZ}
|
1998-01-29 00:44:16 +00:00
|
|
|
BINMODE=4550
|
|
|
|
BINOWN= root
|
|
|
|
BINGRP= network
|
|
|
|
|
1998-04-25 10:49:52 +00:00
|
|
|
OPSYS!= uname -s
|
|
|
|
.if (${OPSYS} == "OpenBSD")
|
|
|
|
MAN= ppp.8
|
|
|
|
.else
|
|
|
|
MAN8= ppp.8
|
|
|
|
LDADD+= -lmd -lcrypt
|
1998-05-04 03:01:34 +00:00
|
|
|
DPADD+= ${LIBMD} ${LIBCRYPT}
|
1998-04-25 10:49:52 +00:00
|
|
|
.endif
|
|
|
|
|
1998-01-29 00:44:16 +00:00
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
|
|
CFLAGS+=-DRELEASE_CRUNCH
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(NOALIAS) || defined(RELEASE_CRUNCH)
|
|
|
|
CFLAGS+=-DNOALIAS
|
|
|
|
.else
|
|
|
|
SRCS+= alias_cmd.c loadalias.c
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE) && !defined(RELEASE_CRUNCH)
|
|
|
|
CFLAGS+=-DHAVE_DES
|
|
|
|
SRCS+= chap_ms.c
|
|
|
|
LDADD+= -ldes
|
|
|
|
DPADD+= ${LIBDES}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.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
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|