freebsd-dev/usr.sbin/syslogd/Makefile

40 lines
596 B
Makefile
Raw Normal View History

1994-05-26 05:23:31 +00:00
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
1994-05-26 05:23:31 +00:00
.include <src.opts.mk>
2006-07-27 14:52:12 +00:00
.PATH: ${SRCTOP}/usr.bin/wall
CONFGROUPS= CONFS SYSLOGD_D
CONFS= syslog.conf
1994-05-26 05:23:31 +00:00
PROG= syslogd
MAN= syslog.conf.5 syslogd.8
SRCS= syslogd.c ttymsg.c
LIBADD= util
.if ${MK_INET_SUPPORT} != "no"
CFLAGS+= -DINET
.endif
2006-07-27 14:52:12 +00:00
.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
1994-05-26 05:23:31 +00:00
.include <bsd.prog.mk>