freebsd-src/usr.sbin/ipsend/Makefile
Bruce Evans 607b5242b2 Fixed syntax error for `make checkdpadd'. libfl.a should never be
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).
1998-04-28 05:31:41 +00:00

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>