]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/inetd/Makefile
Follow up to r348042: cast `aad` to a byte array
[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 CONFS=  inetd.conf
7 PROG=   inetd
8 MAN=    inetd.8
9 MLINKS= inetd.8 inetd.conf.5
10 SRCS=   inetd.c builtins.c
11
12 WARNS?= 3
13 CFLAGS+= -DLOGIN_CAP
14 #CFLAGS+= -DSANITY_CHECK
15
16 .if ${MK_INET6_SUPPORT} != "no"
17 CFLAGS+= -DINET6
18 .endif
19
20 LIBADD= util
21
22 .if ${MK_TCP_WRAPPERS} != "no"
23 CFLAGS+=        -DLIBWRAP
24 LIBADD+=        wrap
25 .endif
26
27 # XXX for src/release/picobsd
28 .if !defined(RELEASE_CRUNCH)
29 CFLAGS+= -DIPSEC
30 LIBADD+=        ipsec
31 .endif
32
33 .include <bsd.prog.mk>