]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/inetd/Makefile
Merge branch 'releng/11.3' into releng-CDN/11.3
[FreeBSD/FreeBSD.git] / usr.sbin / inetd / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 .include <src.opts.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 LIBADD= util
20
21 .if ${MK_TCP_WRAPPERS} != "no"
22 CFLAGS+=        -DLIBWRAP
23 LIBADD+=        wrap
24 .endif
25
26 # XXX for src/release/picobsd
27 .if !defined(RELEASE_CRUNCH)
28 CFLAGS+= -DIPSEC
29 LIBADD+=        ipsec
30 .endif
31
32 .include <bsd.prog.mk>