1998-08-07 14:42:51 -04:00
|
|
|
# $Id: Makefile,v 1.44 1998/06/27 14:17:22 brian Exp $
|
1995-01-31 01:29:58 -05:00
|
|
|
|
|
|
|
|
PROG= ppp
|
1998-08-07 14:42:51 -04:00
|
|
|
SRCS= arp.c async.c auth.c bundle.c cbcp.c ccp.c chap.c chat.c command.c \
|
1998-04-03 14:26:02 -05:00
|
|
|
datalink.c deflate.c defs.c filter.c fsm.c hdlc.c id.c ip.c \
|
1998-04-03 14:21:56 -05:00
|
|
|
ipcp.c iplist.c lcp.c link.c log.c lqr.c main.c mbuf.c modem.c \
|
1998-06-24 15:33:36 -04:00
|
|
|
mp.c pap.c physical.c pred.c probe.c prompt.c route.c server.c \
|
|
|
|
|
sig.c slcompress.c systems.c throughput.c timer.c tun.c vjcomp.c
|
1998-05-21 19:38:08 -04:00
|
|
|
CFLAGS+=-Wall
|
1998-04-25 06:49:52 -04:00
|
|
|
LDADD+= -lutil -lz
|
1998-05-03 23:01:34 -04:00
|
|
|
DPADD+= ${LIBUTIL} ${LIBZ}
|
1998-06-07 13:08:42 -04:00
|
|
|
BINMODE=4554
|
1995-01-31 01:29:58 -05:00
|
|
|
BINOWN= root
|
1997-09-03 20:38:22 -04:00
|
|
|
BINGRP= network
|
1995-01-31 01:29:58 -05:00
|
|
|
|
1998-04-25 06:49:52 -04:00
|
|
|
OPSYS!= uname -s
|
|
|
|
|
.if (${OPSYS} == "OpenBSD")
|
|
|
|
|
MAN= ppp.8
|
|
|
|
|
.else
|
|
|
|
|
MAN8= ppp.8
|
|
|
|
|
LDADD+= -lmd -lcrypt
|
1998-05-03 23:01:34 -04:00
|
|
|
DPADD+= ${LIBMD} ${LIBCRYPT}
|
1998-04-25 06:49:52 -04:00
|
|
|
.endif
|
|
|
|
|
|
1998-01-28 19:44:15 -05:00
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
|
|
|
CFLAGS+=-DRELEASE_CRUNCH
|
|
|
|
|
.endif
|
|
|
|
|
|
1998-06-27 10:17:28 -04:00
|
|
|
.if defined(NOALIAS)
|
1997-11-21 22:37:54 -05:00
|
|
|
CFLAGS+=-DNOALIAS
|
|
|
|
|
.else
|
1998-06-27 10:17:28 -04:00
|
|
|
.if !defined(RELEASE_CRUNCH)
|
|
|
|
|
SRCS+= alias_cmd.c
|
|
|
|
|
LDADD+= -lalias
|
|
|
|
|
DPADD+= ${LIBALIAS}
|
|
|
|
|
.endif
|
1997-11-21 22:37:54 -05:00
|
|
|
.endif
|
|
|
|
|
|
1998-01-17 09:21:21 -05:00
|
|
|
.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE) && !defined(RELEASE_CRUNCH)
|
1998-06-26 14:50:29 -04:00
|
|
|
DISTRIBUTION=des
|
1997-09-24 20:52:37 -04:00
|
|
|
CFLAGS+=-DHAVE_DES
|
|
|
|
|
SRCS+= chap_ms.c
|
|
|
|
|
LDADD+= -ldes
|
|
|
|
|
DPADD+= ${LIBDES}
|
|
|
|
|
.endif
|
|
|
|
|
|
1998-01-17 09:21:21 -05: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.
|
1998-06-27 10:17:28 -04:00
|
|
|
CFLAGS+=-DNOALIAS
|
|
|
|
|
SRCS+= alias_cmd.c chap_ms.c
|
|
|
|
|
chap_ms.o alias_cmd.o:
|
1998-06-09 01:36:48 -04:00
|
|
|
>null_${.PREFIX}.c
|
|
|
|
|
cc -c -o ${.TARGET} null_${.PREFIX}.c
|
1998-01-17 09:21:21 -05:00
|
|
|
.endif
|
|
|
|
|
|
1995-01-31 01:29:58 -05:00
|
|
|
.include <bsd.prog.mk>
|