Makefile revision 356388
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: stable/11/usr.sbin/inetd/Makefile 356388 2020-01-05 21:35:02Z kevans $
3
4.include <src.opts.mk>
5
6PROG=	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
25# XXX for src/release/picobsd
26.if !defined(RELEASE_CRUNCH)
27CFLAGS+= -DIPSEC
28LIBADD+=	ipsec
29.endif
30
31.include <bsd.prog.mk>
32