1
2.include <src.opts.mk>
3
4CONFS=	inetd.conf
5PROG=	inetd
6PACKAGE=	inetd
7MAN=	inetd.8
8MLINKS=	inetd.8 inetd.conf.5
9SRCS=	inetd.c builtins.c
10
11CFLAGS+= -DLOGIN_CAP
12#CFLAGS+= -DSANITY_CHECK
13
14.if ${MK_INET6_SUPPORT} != "no"
15CFLAGS+= -DINET6
16.endif
17
18LIBADD=	util
19
20.if ${MK_TCP_WRAPPERS} != "no"
21CFLAGS+=	-DLIBWRAP
22LIBADD+=	wrap
23.endif
24
25CFLAGS+= -DIPSEC
26LIBADD+=	ipsec
27
28.include <bsd.prog.mk>
29