47e493d28c
barf at some of the gratuitous pointer gymnastics, and I do not see a simple solution.
17 lines
311 B
Makefile
17 lines
311 B
Makefile
# Make `routed` for FreeBSD
|
|
# $FreeBSD$
|
|
|
|
PROG= routed
|
|
SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
|
|
MAN= routed.8
|
|
SUBDIR= rtquery
|
|
LDADD= -lmd
|
|
DPADD= ${LIBMD}
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
|
|
WARNS?= 6
|
|
.else
|
|
WARNS?= 0
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|