]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/inetd/Makefile
This commit was generated by cvs2svn to compensate for changes in r107588,
[FreeBSD/FreeBSD.git] / usr.sbin / inetd / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 MAINTAINER=     dwmalone
5
6 PROG=   inetd
7 MAN=    inetd.8
8 MLINKS= inetd.8 inetd.conf.5
9 SRCS=   inetd.c builtins.c
10
11 #WARNS?=        2
12 CFLAGS+= -DLOGIN_CAP
13 #CFLAGS+= -DSANITY_CHECK
14
15 DPADD=  ${LIBUTIL} ${LIBWRAP}
16 LDADD=  -lutil -lwrap
17
18 .if !defined(RELEASE_CRUNCH)
19 CFLAGS+= -DINET6 -DIPSEC
20 DPADD+= ${LIBIPSEC}
21 LDADD+= -lipsec
22 .endif
23
24 .include <bsd.prog.mk>