xref: /freebsd/usr.sbin/syslogd/Makefile (revision d37ea99837e6ad50837fd9fe1771ddf1c3ba6002)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD$
3
4.PATH: ${.CURDIR}/../../usr.bin/wall
5
6PROG=	syslogd
7MAN=	syslog.conf.5 syslogd.8
8SRCS=	syslogd.c ttymsg.c
9
10DPADD=	${LIBUTIL}
11LDADD=	-lutil
12
13WARNS?=	1
14CFLAGS+=-DINET6 -I${.CURDIR}/../../usr.bin/wall
15
16.include <bsd.prog.mk>
17