xref: /freebsd/usr.sbin/syslogd/Makefile (revision 5b9c547c)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6.PATH: ${.CURDIR}/../../usr.bin/wall
7
8PROG=	syslogd
9MAN=	syslog.conf.5 syslogd.8
10SRCS=	syslogd.c ttymsg.c
11
12LIBADD=	util
13
14WARNS?= 3
15
16.if ${MK_INET6_SUPPORT} != "no"
17CFLAGS+= -DINET6
18.endif
19
20CFLAGS+= -I${.CURDIR}/../../usr.bin/wall
21
22.include <bsd.prog.mk>
23