aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ipsend
diff options
context:
space:
mode:
authorGuido van Rooij <guido@FreeBSD.org>1999-11-23 21:53:19 +0000
committerGuido van Rooij <guido@FreeBSD.org>1999-11-23 21:53:19 +0000
commitebcb6d9e5b30150d59369fb09d0ab00eae5b6c7d (patch)
tree2b0ab4ab01dea6511a2cb45f64eb95b49c3f3cce /usr.sbin/ipsend
parent9cc86ee930d88ee4bf817ea7bf2a36679f1d1e47 (diff)
downloadsrc-ebcb6d9e5b30150d59369fb09d0ab00eae5b6c7d.tar.gz
src-ebcb6d9e5b30150d59369fb09d0ab00eae5b6c7d.zip
Revive userland stuff for ipfilter.
Also fixes: PR: 7791
Notes
Notes: svn path=/head/; revision=53643
Diffstat (limited to 'usr.sbin/ipsend')
-rw-r--r--usr.sbin/ipsend/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/usr.sbin/ipsend/Makefile b/usr.sbin/ipsend/Makefile
new file mode 100644
index 000000000000..75a45b398d0d
--- /dev/null
+++ b/usr.sbin/ipsend/Makefile
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../contrib/ipfilter/ipsend \
+ ${.CURDIR}/../../contrib/ipfilter/iplang \
+ ${.CURDIR}/../../contrib/ipfilter
+
+PROG= ipsend
+MAN1= ipsend.1
+MAN5= ipsend.5
+SRCS= ipsend.c ip.c ipsopt.c sbpf.c sock.c 44arp.c iplang_y.y iplang_l.l \
+ y.tab.h
+
+CFLAGS+=-DDOSOCKET -DIPL_NAME=\"/dev/ipl\" \
+ -I- -I. -I${.CURDIR}/../../sys/netinet \
+ -I${.CURDIR}/../../contrib/ipfilter/ipsend \
+ -I${.CURDIR}/../../contrib/ipfilter/iplang \
+ -I${.CURDIR}/../../contrib/ipfilter
+
+DPADD= ${LIBL}
+LDADD= -ll
+
+.include <bsd.prog.mk>