mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 14:21:18 +01:00
f1722afc8d
NO_ROOT case of make packages. Submitted by: Dan McGregor <dan.mcgregor@usask.ca> Approved by: re (rgrimes)
40 lines
596 B
Makefile
40 lines
596 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/usr.bin/wall
|
|
|
|
CONFGROUPS= CONFS SYSLOGD_D
|
|
CONFS= syslog.conf
|
|
PROG= syslogd
|
|
MAN= syslog.conf.5 syslogd.8
|
|
SRCS= syslogd.c ttymsg.c
|
|
|
|
LIBADD= util
|
|
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
SYSLOGD_D=
|
|
SYSLOGD_DDIR= /etc/syslog.d
|
|
.if ${MK_FTP} != "no"
|
|
SYSLOGD_D+= ftp.conf
|
|
.endif
|
|
|
|
.if ${MK_LPR} != "no"
|
|
SYSLOGD_D+= lpr.conf
|
|
.endif
|
|
|
|
.if ${MK_PPP} != "no"
|
|
SYSLOGD_D+= ppp.conf
|
|
.endif
|
|
|
|
CFLAGS+= -I${SRCTOP}/usr.bin/wall
|
|
|
|
.include <bsd.prog.mk>
|