20 lines
419 B
Makefile
20 lines
419 B
Makefile
# $NetBSD: Makefile,v 1.14 2012/08/10 12:10:29 joerg Exp $
|
|
|
|
USE_FORT?= yes # network server
|
|
|
|
PROG= rarpd
|
|
SRCS= rarpd.c mkarp.c
|
|
MAN= rarpd.8
|
|
|
|
# Uncomment the following to require a boot file in TFTP_DIR
|
|
# to exist for a rarp reply to be sent.
|
|
# CPPFLAGS+=-DREQUIRE_TFTPBOOT -DTFTP_DIR=\"/tftpboot\"
|
|
CPPFLAGS+=-DHAVE_IFADDRS_H
|
|
|
|
LDADD+= -lutil
|
|
DPADD+= ${LIBUTIL}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
COPTS.mkarp.c+= -Wno-pointer-sign
|