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