]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/syslogd/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / syslogd / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 .PATH: ${.CURDIR}/../../usr.bin/wall
7
8 PROG=   syslogd
9 MAN=    syslog.conf.5 syslogd.8
10 SRCS=   syslogd.c ttymsg.c
11
12 DPADD=  ${LIBUTIL}
13 LDADD=  -lutil
14
15 WARNS?= 3
16
17 .if ${MK_INET6_SUPPORT} != "no"
18 CFLAGS+= -DINET6
19 .endif
20
21 CFLAGS+= -I${.CURDIR}/../../usr.bin/wall
22
23 .include <bsd.prog.mk>