freebsd-dev/usr.sbin/ppp/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
1.7 KiB
Makefile
Raw Normal View History

1999-08-28 01:35:59 +00:00
# $FreeBSD$
1999-01-28 15:16:38 +00:00
.include <src.opts.mk>
PACKAGE= ppp
1995-01-31 06:29:58 +00:00
PROG= ppp
MAN= ppp.8
SRCS= acf.c arp.c async.c auth.c bundle.c cbcp.c ccp.c chap.c chat.c \
command.c datalink.c deflate.c defs.c exec.c filter.c fsm.c hdlc.c \
iface.c ip.c ipcp.c ipv6cp.c iplist.c lcp.c link.c log.c lqr.c main.c \
mbuf.c mp.c ncp.c ncpaddr.c pap.c physical.c pred.c probe.c prompt.c \
proto.c route.c server.c sig.c slcompress.c sync.c systems.c tcp.c \
tcpmss.c throughput.c timer.c tty.c tun.c udp.c vjcomp.c
WARNS?= 3
CONFS= ppp.conf
CONFSDIR= ${CONFDIR}/ppp
CONFSMODE= 600
.if ${MK_NETGRAPH} == "no"
PPP_NO_NETGRAPH=
.endif
.if ${MK_PAM_SUPPORT} == "no"
2004-12-21 12:49:24 +00:00
PPP_NO_PAM=
.endif
.if ${MK_RADIUS_SUPPORT} == "no"
PPP_NO_RADIUS=
.endif
.if defined(PPP_NO_SUID)
BINMODE=554
.else
BINMODE=4554
BINOWN= root
.endif
BINGRP= network
M4FLAGS=
LIBADD= md util z
.if defined(PPP_CONFDIR) && !empty(PPP_CONFDIR)
2001-03-23 13:28:28 +00:00
CFLAGS+=-DPPP_CONFDIR=\"${PPP_CONFDIR}\"
.endif
.if defined(PPP_NO_KLDLOAD)
1999-09-22 00:44:45 +00:00
CFLAGS+=-DNOKLDLOAD
.endif
.if ${MK_INET6_SUPPORT} == "no"
2000-03-14 19:33:13 +00:00
CFLAGS+=-DNOINET6
.endif
.if defined(PPP_NO_NAT)
1999-08-22 23:17:57 +00:00
CFLAGS+=-DNONAT
.else
SRCS+= nat_cmd.c
LIBADD+= alias
.endif
.if defined(PPP_NO_SUID)
CFLAGS+=-DNOSUID
.else
SRCS+= id.c
.endif
.if ${MK_OPENSSL} == "no" || defined(PPP_NO_DES)
CFLAGS+=-DNODES
.else
SRCS+= chap_ms.c mppe.c
LIBADD+= crypto
.endif
.if defined(PPP_NO_RADIUS)
CFLAGS+=-DNORADIUS
.else
SRCS+= radius.c
LIBADD+= radius
.endif
.if defined(PPP_NO_NETGRAPH)
CFLAGS+=-DNONETGRAPH
.else
SRCS+= ether.c
LIBADD+= netgraph
.if defined(EXPERIMENTAL_NETGRAPH)
CFLAGS+=-DEXPERIMENTAL_NETGRAPH
SRCS+= netgraph.c
.endif
.endif
.if defined(PPP_NO_PAM)
2003-10-29 20:32:19 +00:00
CFLAGS+=-DNOPAM
LIBADD+= crypt
2003-10-29 20:32:19 +00:00
.else
LIBADD+= pam
2003-10-29 20:32:19 +00:00
.endif
1995-01-31 06:29:58 +00:00
.include <bsd.prog.mk>