Home | History | Annotate | Line # | Download | only in inetd
Makefile revision 1.17
      1 #	from: @(#)Makefile	8.1 (Berkeley) 6/6/93
      2 #	$NetBSD: Makefile,v 1.17 2000/01/31 14:28:17 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 # This is necessary due to be friendly with past RFC2553 API changes...
     16 CPPFLAGS+=-Dss_family=__ss_family -Dss_len=__ss_len
     17 
     18 CFLAGS+=-DIPSEC
     19 SRCS+=	ipsec.c
     20 LDADD+= -lipsec
     21 DPADD+=	${LIBIPSEC}
     22 
     23 .include <bsd.prog.mk>
     24