1#	$NetBSD: Makefile,v 1.24 2011/08/14 11:34:11 christos Exp $
2#	from: @(#)Makefile	8.1 (Berkeley) 6/19/93
3
4USE_FORT?= yes	# network client/server
5PROG=	routed
6SRCS=	if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
7MAN=	routed.8
8SUBDIR=	rtquery
9
10LDADD+=	-lutil
11DPADD+=	${LIBUTIL}
12
13# By popular demand...
14MLINKS=	routed.8 rdisc.8
15#COPTS+=-g -DDEBUG -Wall
16
17COPTS.main.c = -Wno-format-nonliteral
18COPTS.trace.c = -Wno-format-nonliteral
19
20.include <bsd.prog.mk>
21.include <bsd.subdir.mk>
22