Remove building with NOCRYPTO option
[minix.git] / usr.sbin / inetd / Makefile
blob34e611f556f647695fc319deba07681f8c166170
1 # from: @(#)Makefile 8.1 (Berkeley) 6/6/93
2 # $NetBSD: Makefile,v 1.23 2009/10/22 22:50:35 tsarna Exp $
4 .include <bsd.own.mk>
6 USE_FORT?= yes # network server
8 PROG= inetd
9 SRCS= inetd.c
10 MAN= inetd.8
11 MLINKS= inetd.8 inetd.conf.5
13 CPPFLAGS+=-DLIBWRAP
14 # Use LIBWRAP_INTERNAL for libwrap checking of inetd's `internal' services.
15 #CPPFLAGS+=-DLIBWRAP_INTERNAL
16 LDADD+= -lwrap -lutil
17 DPADD+= ${LIBWRAP} ${LIBUTIL}
19 .if (${USE_INET6} != "no")
20 CPPFLAGS+=-DINET6
21 .endif
23 .if !defined(__MINIX)
24 CPPFLAGS+=-DIPSEC
25 SRCS+= ipsec.c
26 LDADD+= -lipsec
27 DPADD+= ${LIBIPSEC}
28 .else # defined(__MINIX)
29 CPPFLAGS+=-DNO_RPC
30 .endif # defined(__MINIX)
32 .include <bsd.prog.mk>