NetBSD/usr.sbin/rarpd/Makefile

20 lines
412 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.10 2006/05/11 23:16:31 mrg Exp $
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.
1997-10-25 10:57:53 +04:00
# CPPFLAGS+=-DREQUIRE_TFTPBOOT -DTFTP_DIR=\"/tftpboot\"
CPPFLAGS+=-DHAVE_IFADDRS_H
1999-06-06 06:52:16 +04:00
LDADD+= -lutil
DPADD+= ${LIBUTIL}
.include <bsd.prog.mk>
.if ${HAVE_GCC} == 4
COPTS.mkarp.c+= -Wno-pointer-sign
.endif