Home | History | Annotate | Line # | Download | only in inetd
Makefile revision 1.19
      1 #	from: @(#)Makefile	8.1 (Berkeley) 6/6/93
      2 #	$NetBSD: Makefile,v 1.19 2001/11/19 03:18:28 itojun Exp $
      3 
      4 PROG=	inetd
      5 SRCS=	inetd.c
      6 MAN=	inetd.8
      7 MLINKS=	inetd.8 inetd.conf.5
      8 
      9 CPPFLAGS+=-DLIBWRAP -DINET6
     10 # Use LIBWRAP_INTERNAL for libwrap checking of inetd's `internal' services.
     11 #CPPFLAGS+=-DLIBWRAP_INTERNAL
     12 LDADD+= -lwrap -lutil
     13 DPADD+= ${LIBWRAP} ${LIBUTIL}
     14 
     15 CPPFLAGS+=-DIPSEC
     16 SRCS+=	ipsec.c
     17 LDADD+= -lipsec
     18 DPADD+=	${LIBIPSEC}
     19 
     20 .include <bsd.prog.mk>
     21