f328d583a2
COPTS towards the end of final CFLAGS so that it can be used to override Makefile and other defaults. Using it in Makefiles risks having options set using it clobbered when somebody uses it on the command line. Approved by: bde
25 lines
382 B
Makefile
25 lines
382 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
MAINTAINER= dwmalone
|
|
|
|
PROG= inetd
|
|
MAN= inetd.8
|
|
MLINKS= inetd.8 inetd.conf.5
|
|
SRCS= inetd.c builtins.c
|
|
|
|
#WARNS?= 2
|
|
CFLAGS+= -DLOGIN_CAP
|
|
#CFLAGS+= -DSANITY_CHECK
|
|
|
|
DPADD= ${LIBUTIL} ${LIBWRAP}
|
|
LDADD= -lutil -lwrap
|
|
|
|
.if !defined(RELEASE_CRUNCH)
|
|
CFLAGS+= -DINET6 -DIPSEC
|
|
DPADD+= ${LIBIPSEC}
|
|
LDADD+= -lipsec
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|