b108792d90
- The MACHINE_ARCH check is not exhaustive (missing at least powerpc), and generally not worth maintaining. - While here, fix whitespace and ordering of the Makefile PR: bin/140081 Approved by: ed (co-mentor)
14 lines
222 B
Makefile
14 lines
222 B
Makefile
# Make `routed` for FreeBSD
|
|
# $FreeBSD$
|
|
|
|
PROG= routed
|
|
MAN= routed.8
|
|
SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
|
|
WARNS?= 3
|
|
DPADD= ${LIBMD}
|
|
LDADD= -lmd
|
|
|
|
SUBDIR= rtquery
|
|
|
|
.include <bsd.prog.mk>
|