mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
20e1eb2130
o Mark unused variables. o Set WARNS?=2 o Results in no code changes. Submitted by: Mike Barcroft <mike@q9media.com>
23 lines
378 B
Makefile
23 lines
378 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
MAINTAINER= dwmalone
|
|
|
|
PROG= inetd
|
|
SRCS= inetd.c builtins.c
|
|
WARNS?= 2
|
|
MAN= inetd.8
|
|
MLINKS= inetd.8 inetd.conf.5
|
|
|
|
COPTS+= -DLOGIN_CAP
|
|
#COPTS+= -DSANITY_CHECK
|
|
|
|
DPADD+= ${LIBUTIL} ${LIBWRAP}
|
|
LDADD+= -lutil -lwrap
|
|
.if !defined(RELEASE_CRUNCH)
|
|
CFLAGS+=-DINET6 -DIPSEC
|
|
DPADD+= ${LIBIPSEC}
|
|
LDADD+= -lipsec
|
|
.endif
|
|
.include <bsd.prog.mk>
|