2734cf8c82
Because strings are guaranteed to be null terminated, there is no need for excessive copying of strings, such as the line name.
24 lines
364 B
Makefile
24 lines
364 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../usr.bin/wall
|
|
|
|
PROG= syslogd
|
|
MAN= syslog.conf.5 syslogd.8
|
|
SRCS= syslogd.c ttymsg.c
|
|
|
|
DPADD= ${LIBULOG} ${LIBUTIL}
|
|
LDADD= -lulog -lutil
|
|
|
|
WARNS?= 3
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../usr.bin/wall
|
|
|
|
.include <bsd.prog.mk>
|