]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/traceroute/Makefile
libarchive: merge from vendor branch
[FreeBSD/FreeBSD.git] / usr.sbin / traceroute / Makefile
1
2 .include <src.opts.mk>
3
4 PACKAGE=        runtime
5 PROG=   traceroute
6 MAN=    traceroute.8
7 SRCS=   as.c traceroute.c ifaddrlist.c findsaddr-udp.c
8 BINOWN= root
9 BINMODE=4555
10
11 .if !defined(TRACEROUTE_NO_IPSEC)
12 CFLAGS+= -DIPSEC
13 .endif
14 # RTT Jitter on the internet these days means printing 3 decimal places on
15 # > 1000ms times is plain useless.  Uncomment this to enable variable precision
16 # reporting, ie: print a variable precision from 0.001ms through 1000ms
17 # CFLAGS+= -DSANE_PRECISION
18
19 .if !defined(TRACEROUTE_NO_IPSEC)
20 LIBADD+=        ipsec
21 .endif
22
23 .if ${MK_CASPER} != "no"
24 LIBADD+=        casper
25 LIBADD+=        cap_dns
26 CFLAGS+=-DWITH_CASPER
27 .endif
28
29 WARNS?= 3
30
31 .include <bsd.prog.mk>