blob: 2ccaf8a240a82cb182b32ec2a9daa07b5003eb61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.14 2000/07/04 20:27:37 matt Exp $
PROG= ipsend
SRCS= ipsend.c ip.c ipsopt.c iplang_l.l iplang_y.y sbpf.c sock.c 44arp.c
YHEADER=1
LDADD= -ll
DPADD= ${LIBL}
CPPFLAGS+= -I. -I${.CURDIR}/../../../dist/ipf \
-I${.CURDIR}/../../../dist/ipf/ipsend \
-I${.CURDIR}/../../../dist/ipf/iplang
MAN= ipsend.1 ipsend.5
.PATH: ${.CURDIR}/../../../dist/ipf/ipsend \
${.CURDIR}/../../../dist/ipf/iplang
# XXX
# We have a problem with make and linking ipsend
# cc -o /home/source/src/usr.sbin/ipf/ipsend/../../../dist/ipf/ipsend .....
# isn't correct.
# Use .NOPATH as an workaround for that problem
.NOPATH: ipsend
.include <bsd.prog.mk>
|