ef23194991
- Add -P option to support PID file. When -a is specified /var/run/rarpd.pid is used, and when an interface is specified /var/run/rarpd.<ifname>.pid is used by default.
15 lines
240 B
Makefile
15 lines
240 B
Makefile
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
|
# $FreeBSD$
|
|
|
|
PROG= rarpd
|
|
MAN= rarpd.8
|
|
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
WARNS?= 3
|
|
# This breaks with format strings returned by expand_syslog_m().. argh!
|
|
#FORMAT_AUDIT?= 1
|
|
|
|
.include <bsd.prog.mk>
|