NetBSD/usr.sbin/rtadvd/Makefile

25 lines
446 B
Makefile
Raw Normal View History

2007-05-28 16:06:17 +04:00
# $NetBSD: Makefile,v 1.11 2007/05/28 12:06:40 tls Exp $
2001-05-15 21:07:49 +04:00
.include <bsd.own.mk>
2007-05-28 16:06:17 +04:00
USE_FORT?= yes # network server
PROG= rtadvd
SRCS= rtadvd.c rrenum.c advcap.c if.c config.c timer.c dump.c
1999-07-03 10:26:25 +04:00
CPPFLAGS+=-DINET6
MAN= rtadvd.8 rtadvd.conf.5
2006-02-25 15:00:24 +03:00
LDADD+= -lutil
DPADD+= ${LIBUTIL}
.if ${MKSHARE} != "no"
FILESDIR= /usr/share/examples/rtadvd
FILES= rtadvd.conf
.endif
.include <bsd.prog.mk>
.if (${HAVE_GCC} == 4)
COPTS.dump.c=-fno-strict-aliasing
.endif