]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/syslogd/Makefile
Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
[FreeBSD/FreeBSD.git] / usr.sbin / syslogd / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 .include <src.opts.mk>
5
6 .PATH: ${SRCTOP}/usr.bin/wall
7
8 PROG=   syslogd
9 MAN=    syslog.conf.5 syslogd.8
10 SRCS=   syslogd.c ttymsg.c
11
12 LIBADD= util
13
14 WARNS?= 3
15
16 .if ${MK_INET_SUPPORT} != "no"
17 CFLAGS+= -DINET
18 .endif
19 .if ${MK_INET6_SUPPORT} != "no"
20 CFLAGS+= -DINET6
21 .endif
22
23 CFLAGS+= -I${SRCTOP}/usr.bin/wall
24
25 .include <bsd.prog.mk>