Home | History | Annotate | Line # | Download | only in rarpd
Makefile revision 1.10
      1 #	$NetBSD: Makefile,v 1.10 2006/05/11 23:16:31 mrg Exp $
      2 
      3 PROG=	rarpd
      4 SRCS=	rarpd.c mkarp.c
      5 MAN=	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\"
     10 CPPFLAGS+=-DHAVE_IFADDRS_H
     11 
     12 LDADD+=	-lutil
     13 DPADD+=	${LIBUTIL}
     14 
     15 .include <bsd.prog.mk>
     16 
     17 .if ${HAVE_GCC} == 4
     18 COPTS.mkarp.c+=	-Wno-pointer-sign
     19 .endif
     20