diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1998-03-21 13:53:18 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1998-03-21 13:53:18 +0000 |
| commit | 5021f7402dd1da7cdb09ab33dda6958278f1e3b7 (patch) | |
| tree | 67ae0615aa3185df989addc0c039dbc24f6ff03c /usr.sbin/ipsend | |
| parent | 6314ca637fd2c9388177e01b70e3c9e2a4d50512 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/ipsend')
| -rw-r--r-- | usr.sbin/ipsend/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/usr.sbin/ipsend/Makefile b/usr.sbin/ipsend/Makefile new file mode 100644 index 000000000000..7e36cf1986c4 --- /dev/null +++ b/usr.sbin/ipsend/Makefile @@ -0,0 +1,23 @@ +# $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 + +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 + +LDADD+= -lfl +DPADD+= ${LIBFL} + +CLEANFILES+= y.tab.h + +.include <bsd.prog.mk> |
