diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2010-04-02 21:20:50 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2010-04-02 21:20:50 +0000 |
commit | c6bf16397c6ec3cee1af953c0d6cd6255f3c9118 (patch) | |
tree | 6bf53f5661d839efc4b2e69028710bbcfadc9e3f /usr.bin/bgplg/ping6 | |
parent | 40d137d475c45d4ee163af9ba08de492a1c3522d (diff) |
Support ping6 and traceroute6 in bgplg and bgplgsh.
From Rod Whitworth, ok deraadt@
Diffstat (limited to 'usr.bin/bgplg/ping6')
-rw-r--r-- | usr.bin/bgplg/ping6/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/usr.bin/bgplg/ping6/Makefile b/usr.bin/bgplg/ping6/Makefile new file mode 100644 index 00000000000..837a56d076c --- /dev/null +++ b/usr.bin/bgplg/ping6/Makefile @@ -0,0 +1,14 @@ +# $OpenBSD: Makefile,v 1.1 2010/04/02 21:20:49 sthen Exp $ + +PROGDIR= ${.CURDIR}/../../../sbin/ping6 + +LDSTATIC= -static +CFLAGS+= -I${PROGDIR} +NOMAN= yes + +.include "${PROGDIR}/Makefile" + +BINDIR= /var/www/bin +BINMODE= 000 + +.PATH: ${PROGDIR} |