summaryrefslogtreecommitdiff
path: root/usr.sbin/rarpd/Makefile
blob: 14d4a3beeafc2aaaa178b80d012c1474e8964d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$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.
# CPPFLAGS+=-DREQUIRE_TFTPBOOT -DTFTP_DIR=\"/tftpboot\"
CPPFLAGS+=-DHAVE_IFADDRS_H

LDADD+=	-lutil
DPADD+=	${LIBUTIL}

.include <bsd.prog.mk>

.if ${HAVE_GCC} == 4
COPTS.mkarp.c+=	-Wno-pointer-sign
.endif