NetBSD/usr.sbin/inetd/Makefile

24 lines
576 B
Makefile
Raw Normal View History

# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
# $NetBSD: Makefile,v 1.17 2000/01/31 14:28:17 itojun Exp $
1993-03-21 12:45:37 +03:00
PROG= inetd
SRCS= inetd.c
1994-12-22 14:32:57 +03:00
MAN= inetd.8
MLINKS= inetd.8 inetd.conf.5
1993-03-21 12:45:37 +03:00
CPPFLAGS+=-DLIBWRAP -DINET6
# Use LIBWRAP_INTERNAL for libwrap checking of inetd's `internal' services.
1997-10-25 10:57:53 +04:00
#CPPFLAGS+=-DLIBWRAP_INTERNAL
1999-06-06 05:50:23 +04:00
LDADD+= -lwrap -lutil
DPADD+= ${LIBWRAP} ${LIBUTIL}
# This is necessary due to be friendly with past RFC2553 API changes...
CPPFLAGS+=-Dss_family=__ss_family -Dss_len=__ss_len
CFLAGS+=-DIPSEC
SRCS+= ipsec.c
LDADD+= -lipsec
DPADD+= ${LIBIPSEC}
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>