1# $MirOS: src/sbin/routed/Makefile,v 1.3 2008/03/27 19:05:18 tg Exp $ 2# $OpenBSD: Makefile,v 1.15 2004/04/25 16:28:32 itojun Exp $ 3 4PROG= routed 5SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c \ 6 table.c trace.c 7MAN= routed.8 8CPPFLAGS+= -D_ROUTED -D'min(a,b)=(a < b ? a : b)' -D'log=syslog' 9CPPFLAGS+= -D'panic(s)={log(LOG_ERR, "%s", s); exit(1);}' 10 11SUBDIR+= rtquery 12 13# Do *NOT* turn this flag on unless you like security holes 14#CPPFLAGS+= -DPERMIT_TRACE 15 16.include <bsd.prog.mk> 17