1# $FreeBSD$ 2 3PROG= ipftest 4SRCS= ${GENHDRS} ipftest.c fil.c ip_frag.c ip_state.c ip_nat.c \ 5 ip_nat6.c \ 6 ip_proxy.c ip_auth.c ip_htable.c ip_lookup.c \ 7 ip_pool.c ip_scan.c ip_sync.c ip_rules.c \ 8 ip_fil.c ip_log.c ippool_y.c ippool_l.c ipf_y.c \ 9 ipf_l.c ipnat_y.c ipnat_l.c md5.c radix_ipf.c ip_dstlist.c 10MAN= ipftest.1 11 12WARNS?= 0 13CFLAGS+= -DIPFILTER_LOG -DIPFILTER_COMPILED -DIPFILTER_LOOKUP \ 14 -DIPFILTER_SYNC -DIPFILTER_CKSUM -DHAS_SYS_MD5_H -I. 15 16# XXX The original tarball does not define IPFILTER_SCAN when building this 17# XXX and other modules. It is believed the reason is it fails to build. 18# XXX It has been removed for now. 19# XXX CFLAGS+= -DIPFILTER_SCAN 20 21 22.PATH: ${.CURDIR}/../../../sys/contrib/ipfilter/netinet 23 24GENHDRS= ipnat_l.h ipnat_y.h ippool_l.h ippool_y.h ipf_l.h ipf_y.h 25 26CLEANFILES+= ${GENHDRS} 27CLEANFILES+= ipf_y.c ipf_l.c 28CLEANFILES+= ipf.tab.c ipf.tab.h 29CLEANFILES+= ipnat_y.c ipnat_l.c 30CLEANFILES+= ipnat.tab.c ipnat.tab.h 31CLEANFILES+= ippool_y.c ippool_l.c 32CLEANFILES+= ippool.tab.c ippool.tab.h 33 34ipnat.tab.c ipnat.tab.h: ipnat_y.y 35 ${YACC} -b ipnat -d ${.ALLSRC} 36 37ipnat_y.c: ipnat.tab.c 38 sed -e 's/yy/ipnat_yy/g' \ 39 -e 's/y.tab.c/ipnat_y.c/' \ 40 -e s/\"ipnat_y.y\"/\"..\\/tools\\/ipnat_y.y\"/ \ 41 ipnat.tab.c > ${.TARGET} 42 43ipnat_y.h: ipnat.tab.h 44 sed -e 's/yy/ipnat_yy/g' \ 45 -e 's/y.tab.h/ipnat_y.h/' \ 46 ipnat.tab.h > ${.TARGET} 47 48ipnat_y.h: ipnat_y.c 49 50ipnat_l.c: lexer.c 51 sed -e 's/yy/ipnat_yy/g' \ 52 -e 's/y.tab.h/ipnat_y.h/' \ 53 -e 's/lexer.h/ipnat_l.h/' \ 54 ${.ALLSRC} > ${.TARGET} 55 56ipnat_l.h: lexer.h 57 sed -e 's/yy/ipnat_yy/g' \ 58 ${.ALLSRC} > ${.TARGET} 59 60ippool.tab.c ippool.tab.h: ippool_y.y 61 ${YACC} -b ippool -d ${.ALLSRC} 62 63ippool_y.c: ippool.tab.c 64 sed -e 's/yy/ippool_yy/g' \ 65 -e 's/"ippool_y.y"/"..\/tools\/ippool_y.y"/' \ 66 ippool.tab.c > ${.TARGET} 67 68ippool_y.h: ippool.tab.h 69 sed -e 's/yy/ippool_yy/g' \ 70 ippool.tab.h > ${.TARGET} 71 72ippool_y.h: ippool_y.c 73 74ippool_l.c: lexer.c 75 sed -e 's/yy/ippool_yy/g' \ 76 -e 's/y.tab.h/ippool_y.h/' \ 77 -e 's/lexer.h/ippool_l.h/' \ 78 ${.ALLSRC} > ${.TARGET} 79 80ippool_l.h: lexer.h 81 sed -e 's/yy/ippool_yy/g' \ 82 ${.ALLSRC} > ${.TARGET} 83 84ipf.tab.c ipf.tab.h: ipf_y.y 85 ${YACC} -b ipf -d ${.ALLSRC} 86 87ipf_y.c: ipf.tab.c 88 sed -e 's/yy/ipf_yy/g' \ 89 -e 's/"ipf_y.y"/"..\/tools\/ipf_y.y"/' \ 90 ipf.tab.c > ${.TARGET} 91 92ipf_y.h: ipf.tab.h 93 sed -e 's/yy/ipf_yy/g' \ 94 ipf.tab.h > ${.TARGET} 95 96ipf_y.h: ipf_y.c 97 98ipf_l.c: lexer.c 99 sed -e 's/yy/ipf_yy/g' \ 100 -e 's/y.tab.h/ipf_y.h/' \ 101 -e 's/lexer.h/ipf_l.h/' \ 102 ${.ALLSRC} > ${.TARGET} 103 104ipf_l.h: lexer.h 105 sed -e 's/yy/ipf_yy/g' \ 106 ${.ALLSRC} > ${.TARGET} 107 108.include <bsd.prog.mk> 109