Makefile revision 1.10
1#	$NetBSD: Makefile,v 1.10 2006/05/11 23:16:31 mrg Exp $
2
3PROG=	rarpd
4SRCS=	rarpd.c mkarp.c
5MAN=	rarpd.8
6
7# Uncomment the following to require a boot file in TFTP_DIR
8# to exist for a rarp reply to be sent.
9# CPPFLAGS+=-DREQUIRE_TFTPBOOT -DTFTP_DIR=\"/tftpboot\"
10CPPFLAGS+=-DHAVE_IFADDRS_H
11
12LDADD+=	-lutil
13DPADD+=	${LIBUTIL}
14
15.include <bsd.prog.mk>
16
17.if ${HAVE_GCC} == 4
18COPTS.mkarp.c+=	-Wno-pointer-sign
19.endif
20