c6063d0da8
from the latter.
30 lines
462 B
Makefile
30 lines
462 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= inetd
|
|
MAN= inetd.8
|
|
MLINKS= inetd.8 inetd.conf.5
|
|
SRCS= inetd.c builtins.c
|
|
|
|
WARNS?= 3
|
|
CFLAGS+= -DLOGIN_CAP
|
|
#CFLAGS+= -DSANITY_CHECK
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
DPADD= ${LIBUTIL} ${LIBWRAP}
|
|
LDADD= -lutil -lwrap
|
|
|
|
# XXX for src/release/picobsd
|
|
.if !defined(RELEASE_CRUNCH)
|
|
CFLAGS+= -DIPSEC
|
|
DPADD+= ${LIBIPSEC}
|
|
LDADD+= -lipsec
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|