Makefile revision 313203
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: stable/11/usr.sbin/inetd/Makefile 313203 2017-02-04 15:49:50Z ngie $
3
4.include <src.opts.mk>
5
6PROG=	inetd
7MAN=	inetd.8
8MLINKS=	inetd.8 inetd.conf.5
9SRCS=	inetd.c builtins.c
10
11WARNS?=	3
12CFLAGS+= -DLOGIN_CAP
13#CFLAGS+= -DSANITY_CHECK
14
15.if ${MK_INET6_SUPPORT} != "no"
16CFLAGS+= -DINET6
17.endif
18
19LIBADD=	util
20
21.if ${MK_TCP_WRAPPERS} != "no"
22CFLAGS+=	-DLIBWRAP
23LIBADD+=	wrap
24.endif
25
26# XXX for src/release/picobsd
27.if !defined(RELEASE_CRUNCH)
28CFLAGS+= -DIPSEC
29LIBADD+=	ipsec
30.endif
31
32.include <bsd.prog.mk>
33