1 # $NetBSD: Makefile,v 1.15 2011/05/26 12:56:34 joerg Exp $ 2 # from: Id: Makefile,v 1.5 1993/06/24 05:11:16 deering Exp 3 4 .include <bsd.own.mk> 5 6 USE_FORT?= yes # network server 7 8 PROG= mrouted 9 SRCS= callout.c cfparse.y config.c igmp.c inet.c kern.c main.c prune.c \ 10 route.c vif.c 11 MAN= mrouted.8 12 13 LDADD+= -lutil 14 DPADD+= ${LIBUTIL} 15 CPPFLAGS+= -I${.CURDIR} 16 17 CWARNFLAGS.clang+= -Wno-format-extra-args 18 19 .include <bsd.prog.mk> 20