Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/ipf Don't call 'yacc'...Call ${YACC}



details:   https://anonhg.NetBSD.org/src/rev/d67b3b03ca63
branches:  trunk
changeset: 565083:d67b3b03ca63
user:      jmc <jmc%NetBSD.org@localhost>
date:      Mon Mar 29 02:30:08 2004 +0000

description:
Don't call 'yacc'...Call ${YACC}

diffstat:

 usr.sbin/ipf/ipf/Makefile     |  4 ++--
 usr.sbin/ipf/ipftest/Makefile |  8 ++++----
 usr.sbin/ipf/ipmon/Makefile   |  4 ++--
 usr.sbin/ipf/ipnat/Makefile   |  4 ++--
 usr.sbin/ipf/ippool/Makefile  |  4 ++--
 usr.sbin/ipf/ipsend/Makefile  |  4 ++--
 6 files changed, 14 insertions(+), 14 deletions(-)

diffs (126 lines):

diff -r 336feabd6ca1 -r d67b3b03ca63 usr.sbin/ipf/ipf/Makefile
--- a/usr.sbin/ipf/ipf/Makefile Mon Mar 29 02:20:51 2004 +0000
+++ b/usr.sbin/ipf/ipf/Makefile Mon Mar 29 02:30:08 2004 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.16 2004/03/28 09:01:27 martti Exp $
+#      $NetBSD: Makefile,v 1.17 2004/03/29 02:30:08 jmc Exp $
 
 .include <bsd.own.mk>          # for MKDYNAMICROOT definition
 
@@ -13,7 +13,7 @@
 CLEANFILES+=   ipf_l.c ipf_l.h
 
 ipf_y.c ipf_y.h: ipf_y.y ipf_l.h
-       yacc -d ${NETBSDSRCDIR}/dist/ipf/tools/ipf_y.y
+       ${YACC} -d ${NETBSDSRCDIR}/dist/ipf/tools/ipf_y.y
        sed -e 's/yy/ipf_yy/g' \
            -e 's/"ipf_y.y"/"..\/tools\/ipf_y.y"/' \
                y.tab.c > ipf_y.c
diff -r 336feabd6ca1 -r d67b3b03ca63 usr.sbin/ipf/ipftest/Makefile
--- a/usr.sbin/ipf/ipftest/Makefile     Mon Mar 29 02:20:51 2004 +0000
+++ b/usr.sbin/ipf/ipftest/Makefile     Mon Mar 29 02:30:08 2004 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.23 2004/03/28 09:17:33 martti Exp $
+#      $NetBSD: Makefile,v 1.24 2004/03/29 02:30:08 jmc Exp $
 
 .include <bsd.own.mk>
 
@@ -27,7 +27,7 @@
 CLEANFILES+=   ippool_l.c ippool_l.h
 
 ipnat_y.c ipnat_y.h: ipnat_y.y ipnat_l.h
-       yacc -d ${NETBSDSRCDIR}/dist/ipf/tools/ipnat_y.y
+       ${YACC} -d ${NETBSDSRCDIR}/dist/ipf/tools/ipnat_y.y
        sed -e 's/yy/ipnat_yy/g' \
            -e 's/y.tab.c/ipnat_y.c/' \
            -e s/\"ipnat_y.y\"/\"..\\/tools\\/ipnat_y.y\"/ \
@@ -47,7 +47,7 @@
                ${NETBSDSRCDIR}/dist/ipf/tools/lexer.h > ipnat_l.h
 
 ippool_y.c ippool_y.h: ippool_y.y ippool_l.h
-       yacc -d ${NETBSDSRCDIR}/dist/ipf/tools/ippool_y.y
+       ${YACC} -d ${NETBSDSRCDIR}/dist/ipf/tools/ippool_y.y
        sed -e 's/yy/ippool_yy/g' \
            -e 's/"ippool_y.y"/"..\/tools\/ippool_y.y"/' \
                y.tab.c > ippool_y.c
@@ -65,7 +65,7 @@
                ${NETBSDSRCDIR}/dist/ipf/tools/lexer.h > ippool_l.h
 
 ipf_y.c ipf_y.h: ipf_y.y ipf_l.h
-       yacc -d ${NETBSDSRCDIR}/dist/ipf/tools/ipf_y.y
+       ${YACC} -d ${NETBSDSRCDIR}/dist/ipf/tools/ipf_y.y
        sed -e 's/yy/ipf_yy/g' \
            -e 's/"ipf_y.y"/"..\/tools\/ipf_y.y"/' \
                y.tab.c > ipf_y.c
diff -r 336feabd6ca1 -r d67b3b03ca63 usr.sbin/ipf/ipmon/Makefile
--- a/usr.sbin/ipf/ipmon/Makefile       Mon Mar 29 02:20:51 2004 +0000
+++ b/usr.sbin/ipf/ipmon/Makefile       Mon Mar 29 02:30:08 2004 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.16 2004/03/28 09:35:26 mrg Exp $
+#      $NetBSD: Makefile,v 1.17 2004/03/29 02:30:08 jmc Exp $
 
 PROG=          ipmon
 SRCS=          ipmon.c ipmon_y.c ipmon_l.c
@@ -12,7 +12,7 @@
 CLEANFILES+=   ipmon_l.c ipmon_l.h
 
 ipmon_y.c ipmon_y.h: ipmon_y.y ipmon_l.h
-       yacc -d ${NETBSDSRCDIR}/dist/ipf/tools/ipmon_y.y
+       ${YACC} -d ${NETBSDSRCDIR}/dist/ipf/tools/ipmon_y.y
        sed -e 's/yy/ipmon_yy/g' \
            -e 's/"ipmon_y.y"/"..\/tools\/ipmon_y.y"/' \
                y.tab.c > ipmon_y.c
diff -r 336feabd6ca1 -r d67b3b03ca63 usr.sbin/ipf/ipnat/Makefile
--- a/usr.sbin/ipf/ipnat/Makefile       Mon Mar 29 02:20:51 2004 +0000
+++ b/usr.sbin/ipf/ipnat/Makefile       Mon Mar 29 02:30:08 2004 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.18 2004/03/28 09:18:55 martti Exp $
+#      $NetBSD: Makefile,v 1.19 2004/03/29 02:30:09 jmc Exp $
 
 PROG=          ipnat
 SRCS=          ipnat.c ipnat_y.c ipnat_l.c
@@ -11,7 +11,7 @@
 CLEANFILES+=   ipnat_l.c ipnat_l.h
 
 ipnat_y.c ipnat_y.h: ipnat_y.y ipnat_l.h
-       yacc -d ${NETBSDSRCDIR}/dist/ipf/tools/ipnat_y.y
+       ${YACC} -d ${NETBSDSRCDIR}/dist/ipf/tools/ipnat_y.y
        sed -e 's/yy/ipnat_yy/g' \
            -e 's/y.tab.c/ipnat_y.c/' \
            -e s/\"ipnat_y.y\"/\"..\\/tools\\/ipnat_y.y\"/ \
diff -r 336feabd6ca1 -r d67b3b03ca63 usr.sbin/ipf/ippool/Makefile
--- a/usr.sbin/ipf/ippool/Makefile      Mon Mar 29 02:20:51 2004 +0000
+++ b/usr.sbin/ipf/ippool/Makefile      Mon Mar 29 02:30:08 2004 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.2 2004/03/28 09:35:26 mrg Exp $
+#      $NetBSD: Makefile,v 1.3 2004/03/29 02:30:09 jmc Exp $
 
 PROG=          ippool
 SRCS=          ippool_y.c ippool_l.c kmem.c ippool.c
@@ -10,7 +10,7 @@
 CLEANFILES+=   ippool_l.c ippool_l.h
 
 ippool_y.c ippool_y.h: ippool_y.y ippool_l.h
-       yacc -d ${NETBSDSRCDIR}/dist/ipf/tools/ippool_y.y
+       ${YACC} -d ${NETBSDSRCDIR}/dist/ipf/tools/ippool_y.y
        sed -e 's/yy/ippool_yy/g' \
            -e 's/"ippool_y.y"/"..\/tools\/ippool_y.y"/' \
                y.tab.c > ippool_y.c
diff -r 336feabd6ca1 -r d67b3b03ca63 usr.sbin/ipf/ipsend/Makefile
--- a/usr.sbin/ipf/ipsend/Makefile      Mon Mar 29 02:20:51 2004 +0000
+++ b/usr.sbin/ipf/ipsend/Makefile      Mon Mar 29 02:30:08 2004 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.18 2004/03/28 09:35:26 mrg Exp $
+#      $NetBSD: Makefile,v 1.19 2004/03/29 02:30:09 jmc Exp $
 
 .include <bsd.own.mk>
 
@@ -21,7 +21,7 @@
                ${NETBSDSRCDIR}/dist/ipf/iplang
 
 iplang_y.c iplang_y.h: iplang_y.y
-       yacc -d ${NETBSDSRCDIR}/dist/ipf/iplang/iplang_y.y
+       ${YACC} -d ${NETBSDSRCDIR}/dist/ipf/iplang/iplang_y.y
        mv y.tab.c iplang_y.c
        mv y.tab.h iplang_y.h
 



Home | Main Index | Thread Index | Old Index