mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-29 15:22:43 +00:00
607b5242b2
used. ${LIBFL} is set to a weird value in an attempt to inhibit its use, but only breaks properly in some contexts. Fixed the usual style bugs for DPADD and LDADD (disorder, and += for the initial assignment).
24 lines
549 B
Makefile
24 lines
549 B
Makefile
# $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
|
|
|
|
DPADD= ${LIBL}
|
|
LDADD= -ll
|
|
|
|
CLEANFILES+= y.tab.h
|
|
|
|
.include <bsd.prog.mk>
|