]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/usr.sbin/inetd/Makefile
merge fix for boot-time hang on centos' xen
[FreeBSD/FreeBSD.git] / 6 / usr.sbin / inetd / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 PROG=   inetd
5 MAN=    inetd.8
6 MLINKS= inetd.8 inetd.conf.5
7 SRCS=   inetd.c builtins.c
8
9 WARNS?= 2
10 CFLAGS+= -DLOGIN_CAP
11 #CFLAGS+= -DSANITY_CHECK
12
13 DPADD=  ${LIBUTIL} ${LIBWRAP}
14 LDADD=  -lutil -lwrap
15
16 .if !defined(RELEASE_CRUNCH)
17 CFLAGS+= -DINET6 -DIPSEC
18 DPADD+= ${LIBIPSEC}
19 LDADD+= -lipsec
20 .endif
21
22 .include <bsd.prog.mk>