]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/inetd/Makefile
MFC r318722:
[FreeBSD/stable/10.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}
20 LDADD+=         -lutil
21
22 .if ${MK_TCP_WRAPPERS} != "no"
23 CFLAGS+=        -DLIBWRAP
24 DPADD+=         ${LIBWRAP}
25 LDADD+=         -lwrap
26 .endif
27
28 # XXX for src/release/picobsd
29 .if !defined(RELEASE_CRUNCH)
30 CFLAGS+= -DIPSEC
31 DPADD+= ${LIBIPSEC}
32 LDADD+= -lipsec
33 .endif
34
35 .include <bsd.prog.mk>