Makefile revision 1.11
1# $NetBSD: Makefile,v 1.11 2007/05/28 12:06:40 tls Exp $ 2 3.include <bsd.own.mk> 4 5USE_FORT?= yes # network server 6 7PROG= rtadvd 8SRCS= rtadvd.c rrenum.c advcap.c if.c config.c timer.c dump.c 9 10CPPFLAGS+=-DINET6 11MAN= rtadvd.8 rtadvd.conf.5 12LDADD+= -lutil 13DPADD+= ${LIBUTIL} 14 15.if ${MKSHARE} != "no" 16FILESDIR= /usr/share/examples/rtadvd 17FILES= rtadvd.conf 18.endif 19 20.include <bsd.prog.mk> 21 22.if (${HAVE_GCC} == 4) 23COPTS.dump.c=-fno-strict-aliasing 24.endif 25