freebsd-dev/sbin/routed/Makefile
Poul-Henning Kamp 47e493d28c Only raise WARNS to 6 on i386 and amd64, strict alignment platforms still
barf at some of the gratuitous pointer gymnastics, and I do not see a
simple solution.
2009-04-06 07:13:26 +00:00

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>