-inetd -rshd -rlogind -telnetd -rsh -rlogin Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
18 lines
329 B
Makefile
18 lines
329 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= inetd
|
|
SRCS= inetd.c builtins.c
|
|
MAN8= inetd.8
|
|
MLINKS= inetd.8 inetd.conf.5
|
|
MAINTAINER=des@freebsd.org
|
|
|
|
COPTS+= -Wall -DLOGIN_CAP
|
|
#COPTS+= -DSANITY_CHECK
|
|
|
|
CFLAGS+=-DINET6 -DIPSEC
|
|
DPADD+= ${LIBUTIL} ${LIBWRAP} ${LIBIPSEC}
|
|
LDADD+= -lutil -lwrap -lipsec
|
|
|
|
.include <bsd.prog.mk>
|