diff options
| author | Darren Reed <darrenr@FreeBSD.org> | 2005-04-25 18:55:52 +0000 |
|---|---|---|
| committer | Darren Reed <darrenr@FreeBSD.org> | 2005-04-25 18:55:52 +0000 |
| commit | f81bd860b1727881f283a4552dca535f611d2113 (patch) | |
| tree | 6579d10bd047efc062e0bf08843a91eb486bdfc5 /sbin/ipf/ipsend | |
| parent | 1033f3c55b0699675689ea8da80508e7fff6cbf7 (diff) | |
Notes
Diffstat (limited to 'sbin/ipf/ipsend')
| -rw-r--r-- | sbin/ipf/ipsend/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sbin/ipf/ipsend/Makefile b/sbin/ipf/ipsend/Makefile new file mode 100644 index 000000000000..f555c37d5f58 --- /dev/null +++ b/sbin/ipf/ipsend/Makefile @@ -0,0 +1,40 @@ +# $FreeBSD$ + +NOGCCERROR= # defined + +.include <bsd.own.mk> + +PROG= ipsend +SRCS= ipsend.c ip.c ipsopt.c iplang_y.c iplang_l.l sbpf.c \ + sock.c 44arp.c +MAN= ipsend.1 ipsend.5 +DPADD+= ${LIBL} +LDADD+= -ll + +CFLAGS+= -I${NETBSDSRCDIR}/dist/ipf/ipsend +CFLAGS+= -I${NETBSDSRCDIR}/dist/ipf/iplang +CFLAGS+= -I. + +CLEANFILES+= iplang_y.c iplang_y.h + +DPSRCS+= iplang_y.h + +.PATH: ${NETBSDSRCDIR}/dist/ipf/ipsend \ + ${NETBSDSRCDIR}/dist/ipf/iplang + +iplang_y.c: iplang_y.y + ${_MKTARGET_CREATE} + ${YACC} -d ${.ALLSRC} + mv y.tab.c ${.TARGET} + mv y.tab.h ${.TARGET:.c=.h} + +iplang_y.h: iplang_y.c + +# 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> |
