summaryrefslogtreecommitdiffstats
path: root/usr.sbin/traceroute/Makefile
blob: ea047301ee78f157eeb0372dce7db89ed14b64c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# $FreeBSD$

PROG=	traceroute
BINMODE=4555
CFLAGS+=-DHAVE_SYS_SELECT_H=1 -DHAVE_SETLINEBUF=1 -DHAVE_RAW_OPTIONS=1 \
	-DSTDC_HEADERS=1
.ifndef (NOIPSEC)
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

SRCS=	version.c traceroute.c
CLEANFILES+=	version.c
.ifndef (NOIPSEC)
DPADD=	${LIBIPSEC}
LDADD=	-lipsec
.endif

TRACEROUTE_DISTDIR?= ${.CURDIR}/../../contrib/traceroute

.if ${MACHINE_ARCH} == "alpha"
# gcc builtin memcpy causes unaligned access
CFLAGS+=	-fno-builtin
.endif

CFLAGS+=	-I${TRACEROUTE_DISTDIR}/lbl
.PATH:	${TRACEROUTE_DISTDIR}

version.c: ${TRACEROUTE_DISTDIR}/VERSION
	@rm -f ${.TARGET}
	sed -e 's/.*/char version[] = "&";/' ${TRACEROUTE_DISTDIR}/VERSION > ${.TARGET}

.include <bsd.prog.mk>
OpenPOWER on IntegriCloud