xref: /dragonfly/usr.sbin/syslogd/Makefile (revision 6b5c5d0d)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: src/usr.sbin/syslogd/Makefile,v 1.12 2004/02/05 22:44:25 ru Exp $
3# $DragonFly: src/usr.sbin/syslogd/Makefile,v 1.3 2004/08/09 20:11:19 dillon Exp $
4#
5
6.PATH: ${.CURDIR}/../../usr.bin/wall
7
8PROG=	syslogd
9MAN=	syslog.conf.5 syslogd.8
10SRCS=	syslogd.c ttymsg.c
11
12DPADD=	${LIBUTIL}
13LDADD=	-lutil
14
15WARNS?=	1
16CFLAGS+=-DINET6 -I${.CURDIR}/../../usr.bin/wall
17
18.include <bsd.prog.mk>
19