Remove reundant quote.
[netbsd-mini2440.git] / usr.sbin / inetd / Makefile
blob958ff103715b7b8b08813620ef7d5d400a080225
1 # from: @(#)Makefile 8.1 (Berkeley) 6/6/93
2 # $NetBSD: Makefile,v 1.20 2005/01/10 02:58:59 lukem 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 CPPFLAGS+=-DIPSEC
24 SRCS+= ipsec.c
25 LDADD+= -lipsec
26 DPADD+= ${LIBIPSEC}
28 .include <bsd.prog.mk>