30 lines
572 B
Makefile
30 lines
572 B
Makefile
# $NetBSD: Makefile,v 1.19 2016/06/15 13:57:26 riastradh Exp $
|
|
|
|
WARNS?= 4
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # network server
|
|
|
|
RUMPPRG= rtadvd
|
|
SRCS= rtadvd.c rrenum.c advcap.c if.c config.c timer.c dump.c
|
|
MAN= rtadvd.8 rtadvd.conf.5
|
|
|
|
CPPFLAGS+= -DINET6
|
|
LDADD+= -lutil
|
|
DPADD+= ${LIBUTIL}
|
|
|
|
.if ${MKSHARE} != "no"
|
|
FILESDIR= /usr/share/examples/rtadvd
|
|
FILES= rtadvd.conf
|
|
.endif
|
|
|
|
.PATH: ${.CURDIR}/../../lib/libc/net
|
|
RUMPSRCS= getifaddrs.c getnameinfo.c if_indextoname.c if_nametoindex.c
|
|
.if (${MKRUMP} != "no")
|
|
CPPFLAGS+= -DRUMP_ACTION
|
|
.endif
|
|
|
|
|
|
.include <bsd.prog.mk>
|