Makefile revision 1.16
1# from: @(#)Makefile 8.1 (Berkeley) 6/6/93 2# $NetBSD: Makefile,v 1.16 1999/07/02 04:48:19 itojun Exp $ 3 4PROG= inetd 5MAN= inetd.8 6MLINKS= inetd.8 inetd.conf.5 7 8CPPFLAGS+=-DLIBWRAP 9# Use LIBWRAP_INTERNAL for libwrap checking of inetd's `internal' services. 10#CPPFLAGS+=-DLIBWRAP_INTERNAL 11LDADD+= -lwrap -lutil 12DPADD+= ${LIBWRAP} ${LIBUTIL} 13 14# This is necessary due to be friendly with past RFC2553 API changes... 15CPPFLAGS+=-Dss_family=__ss_family -Dss_len=__ss_len 16 17CFLAGS+=-DIPSEC 18LDADD+= -lipsec 19DPADD+= ${LIBIPSEC} 20 21.include <bsd.prog.mk> 22