1 # $NetBSD: Makefile,v 1.16 2015/09/09 10:06:05 ozaki-r Exp $ 2 3 .include <bsd.own.mk> 4 5 USE_FORT?= yes # setuid 6 RUMPPRG= ping6 7 MAN= ping6.8 8 9 BINOWN= root 10 BINMODE= 4555 11 12 CPPFLAGS+= -DINET6 13 CPPFLAGS+= -DIPSEC 14 15 LDADD+= -lipsec -lm 16 DPADD+= ${LIBIPSEC} ${LIBM} 17 18 .PATH: ${.CURDIR}/../../lib/libc/net 19 RUMPSRCS= getaddrinfo.c getifaddrs.c getnameinfo.c 20 RUMPSRCS+= if_indextoname.c if_nametoindex.c 21 .if (${MKRUMP} != "no") 22 CPPFLAGS+= -DRUMP_ACTION 23 .endif 24 25 .include <bsd.prog.mk> 26