freebsd-src/usr.sbin/traceroute/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
650 B
Makefile
Raw Normal View History

1994-05-26 05:23:31 +00:00
.include <src.opts.mk>
PACKAGE= runtime
1994-05-26 05:23:31 +00:00
PROG= traceroute
MAN= traceroute.8
SRCS= as.c traceroute.c ifaddrlist.c findsaddr-udp.c
BINOWN= root
1994-05-26 05:23:31 +00:00
BINMODE=4555
2004-12-21 12:44:20 +00:00
.if !defined(TRACEROUTE_NO_IPSEC)
CFLAGS+= -DIPSEC
.endif
# RTT Jitter on the internet these days means printing 3 decimal places on
# > 1000ms times is plain useless. Uncomment this to enable variable precision
# reporting, ie: print a variable precision from 0.001ms through 1000ms
# CFLAGS+= -DSANE_PRECISION
2004-12-21 12:44:20 +00:00
.if !defined(TRACEROUTE_NO_IPSEC)
LIBADD+= ipsec
.endif
.if ${MK_CASPER} != "no"
LIBADD+= casper
LIBADD+= cap_dns
CFLAGS+=-DWITH_CASPER
.endif
WARNS?= 3
1994-05-26 05:23:31 +00:00
.include <bsd.prog.mk>