diff options
author | jamie <jamie@FreeBSD.org> | 2010-10-19 21:32:13 +0000 |
---|---|---|
committer | jamie <jamie@FreeBSD.org> | 2010-10-19 21:32:13 +0000 |
commit | 09f9c897d33c41618ada06fbbcf1a9b3812dee53 (patch) | |
tree | af2ff90c73b266b86d086d66705c8cc92cce3b7b /usr.sbin/traceroute/Makefile | |
parent | 831bbfaf753dc145ab80d1807336d4fb9ef8dffe (diff) | |
download | FreeBSD-src-09f9c897d33c41618ada06fbbcf1a9b3812dee53.zip FreeBSD-src-09f9c897d33c41618ada06fbbcf1a9b3812dee53.tar.gz |
A new jail(8) with a configuration file, to replace the work currently done
by /etc/rc.d/jail.
Diffstat (limited to 'usr.sbin/traceroute/Makefile')
-rw-r--r-- | usr.sbin/traceroute/Makefile | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/usr.sbin/traceroute/Makefile b/usr.sbin/traceroute/Makefile deleted file mode 100644 index 6d6752a..0000000 --- a/usr.sbin/traceroute/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# $FreeBSD$ - -TRACEROUTE_DISTDIR?= ${.CURDIR}/../../contrib/traceroute -.PATH: ${TRACEROUTE_DISTDIR} - -PROG= traceroute -MAN= traceroute.8 -SRCS= as.c version.c traceroute.c ifaddrlist.c findsaddr-udp.c -BINOWN= root -BINMODE=4555 -CLEANFILES= version.c - -CFLAGS+= -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_SOCKIO_H=1 \ - -DHAVE_NET_ROUTE_H=1 -DHAVE_NET_IF_DL_H=1 \ - -DHAVE_STRERROR=1 -DHAVE_USLEEP=1 \ - -DHAVE_SYS_SYSCTL_H=1 \ - -DHAVE_SETLINEBUF=1 -DHAVE_RAW_OPTIONS=1 \ - -DHAVE_SOCKADDR_SA_LEN=1 -DHAVE_ICMP_NEXTMTU=1 -.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 - -.if !defined(TRACEROUTE_NO_IPSEC) -DPADD= ${LIBIPSEC} -LDADD= -lipsec -.endif - -CFLAGS+= -I${TRACEROUTE_DISTDIR}/lbl -I${TRACEROUTE_DISTDIR} - -WARNS?= 0 - -version.c: ${TRACEROUTE_DISTDIR}/VERSION - @rm -f ${.TARGET} - head -1 ${TRACEROUTE_DISTDIR}/VERSION | \ - sed -e 's/.*/char version[] = "&";/' \ - > ${.TARGET} - -.include <bsd.prog.mk> |