]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/inetd/Makefile
Import NetBSD's blacklist source from vendor tree
[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 wrap
20
21 # XXX for src/release/picobsd
22 .if !defined(RELEASE_CRUNCH)
23 CFLAGS+= -DIPSEC
24 LIBADD+=        ipsec
25 .endif
26
27 .include <bsd.prog.mk>