1#         $NetBSD: Makefile,v 1.27 2023/06/03 09:09:13 lukem 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
20COPTS.if.c+=        ${CC_WNO_STRINGOP_TRUNCATION}
21
22.include <bsd.prog.mk>
23.include <bsd.subdir.mk>
24