[svn:parrot] r43343 - in branches/one_make: compilers/data_json compilers/imcc compilers/nqp compilers/pct compilers/pge compilers/tge ext/nqp-rx

coke at svn.parrot.org coke at svn.parrot.org
Thu Dec 31 14:28:42 UTC 2009


Author: coke
Date: Thu Dec 31 14:28:42 2009
New Revision: 43343
URL: https://trac.parrot.org/parrot/changeset/43343

Log:
Eliminate usage of := in static makefiles
 - They are not preprocessed, and so break the bulid for some makes.
doughera++

Modified:
   branches/one_make/compilers/data_json/Makefile.mak
   branches/one_make/compilers/imcc/Makefile.mak
   branches/one_make/compilers/nqp/Makefile.mak
   branches/one_make/compilers/pct/Makefile.mak
   branches/one_make/compilers/pge/Makefile.mak
   branches/one_make/compilers/tge/Makefile.mak
   branches/one_make/ext/nqp-rx/Makefile.mak

Modified: branches/one_make/compilers/data_json/Makefile.mak
==============================================================================
--- branches/one_make/compilers/data_json/Makefile.mak	Thu Dec 31 14:20:13 2009	(r43342)
+++ branches/one_make/compilers/data_json/Makefile.mak	Thu Dec 31 14:28:42 2009	(r43343)
@@ -1,4 +1,4 @@
-DATA_JSON_LIB_PBCS := compilers/data_json/data_json.pbc
+DATA_JSON_LIB_PBCS = compilers/data_json/data_json.pbc
 
 compilers/data_json/data_json.pbc : $(PARROT) \
     compilers/data_json/data_json/grammar.pbc \

Modified: branches/one_make/compilers/imcc/Makefile.mak
==============================================================================
--- branches/one_make/compilers/imcc/Makefile.mak	Thu Dec 31 14:20:13 2009	(r43342)
+++ branches/one_make/compilers/imcc/Makefile.mak	Thu Dec 31 14:28:42 2009	(r43343)
@@ -1,5 +1,5 @@
 # these are private to the IMCC subsystem
-IMCC_O_FILES := \
+IMCC_O_FILES = \
     compilers/imcc/imcparser$(O) \
     compilers/imcc/imclexer$(O) \
     compilers/imcc/imc$(O) \

Modified: branches/one_make/compilers/nqp/Makefile.mak
==============================================================================
--- branches/one_make/compilers/nqp/Makefile.mak	Thu Dec 31 14:20:13 2009	(r43342)
+++ branches/one_make/compilers/nqp/Makefile.mak	Thu Dec 31 14:28:42 2009	(r43343)
@@ -1,6 +1,6 @@
-NQP_LIB_PBCS := compilers/nqp/nqp.pbc
+NQP_LIB_PBCS = compilers/nqp/nqp.pbc
 
-NQP_SOURCES := \
+NQP_SOURCES = \
     compilers/nqp/nqp.pir \
     compilers/nqp/src/Grammar.pg \
     compilers/nqp/src/Grammar/Actions.pir \
@@ -27,7 +27,7 @@
 
 compilers/nqp/bootstrap/nqp.pbc : $(LIBRARY)/PCT.pbc
 
-NQP_CLEANUPS := \
+NQP_CLEANUPS = \
     nqp.pbc \
     src/Grammar_gen.pir \
     bootstrap/gen_actions.pir \

Modified: branches/one_make/compilers/pct/Makefile.mak
==============================================================================
--- branches/one_make/compilers/pct/Makefile.mak	Thu Dec 31 14:20:13 2009	(r43342)
+++ branches/one_make/compilers/pct/Makefile.mak	Thu Dec 31 14:28:42 2009	(r43343)
@@ -1,6 +1,6 @@
 ## XXX does not cover .includes of core .pasm files
 
-PCT_LIB_PBCS := \
+PCT_LIB_PBCS = \
     $(LIBRARY_DIR)/PCT.pbc \
     $(LIBRARY_DIR)/PCT/PAST.pbc \
     $(LIBRARY_DIR)/PCT/Grammar.pbc \

Modified: branches/one_make/compilers/pge/Makefile.mak
==============================================================================
--- branches/one_make/compilers/pge/Makefile.mak	Thu Dec 31 14:20:13 2009	(r43342)
+++ branches/one_make/compilers/pge/Makefile.mak	Thu Dec 31 14:28:42 2009	(r43343)
@@ -1,6 +1,6 @@
 # the default target
 
-PGE_LIB_PBCS := $(LIBRARY_DIR)/PGE.pbc
+PGE_LIB_PBCS = $(LIBRARY_DIR)/PGE.pbc
 
 ## Two-stage build that reuses builtins_gen.pir ; use the Perl6Grammar.pir
 ## of stage one to avoid a circular dependency.

Modified: branches/one_make/compilers/tge/Makefile.mak
==============================================================================
--- branches/one_make/compilers/tge/Makefile.mak	Thu Dec 31 14:20:13 2009	(r43342)
+++ branches/one_make/compilers/tge/Makefile.mak	Thu Dec 31 14:28:42 2009	(r43343)
@@ -1,5 +1,4 @@
-
-TGE_LIB_PBCS := $(LIBRARY_DIR)/TGE.pbc compilers/tge/tgc.pbc
+TGE_LIB_PBCS = $(LIBRARY_DIR)/TGE.pbc compilers/tge/tgc.pbc
 
 $(LIBRARY_DIR)/TGE.pbc:  \
     $(LIBRARY_DIR)/PGE.pbc \

Modified: branches/one_make/ext/nqp-rx/Makefile.mak
==============================================================================
--- branches/one_make/ext/nqp-rx/Makefile.mak	Thu Dec 31 14:20:13 2009	(r43342)
+++ branches/one_make/ext/nqp-rx/Makefile.mak	Thu Dec 31 14:28:42 2009	(r43343)
@@ -1,6 +1,6 @@
 ## XXX does not cover .includes of core .pasm files
 
-NQPRX_LIB_PBCS := \
+NQPRX_LIB_PBCS = \
     $(LIBRARY_DIR)/Regex.pbc \
     $(LIBRARY_DIR)/HLL.pbc \
     $(LIBRARY_DIR)/P6Regex.pbc \


More information about the parrot-commits mailing list