]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/inetd/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / inetd / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   inetd
7 MAN=    inetd.8
8 MLINKS= inetd.8 inetd.conf.5
9 SRCS=   inetd.c builtins.c
10
11 WARNS?= 3
12 CFLAGS+= -DLOGIN_CAP
13 #CFLAGS+= -DSANITY_CHECK
14
15 .if ${MK_INET6_SUPPORT} != "no"
16 CFLAGS+= -DINET6
17 .endif
18
19 DPADD=  ${LIBUTIL} ${LIBWRAP}
20 LDADD=  -lutil -lwrap
21
22 # XXX for src/release/picobsd
23 .if !defined(RELEASE_CRUNCH)
24 CFLAGS+= -DIPSEC
25 DPADD+= ${LIBIPSEC}
26 LDADD+= -lipsec
27 .endif
28
29 .include <bsd.prog.mk>