[svn:parrot] r41513 - branches/pct-rx/config/gen/makefiles

pmichaud at svn.parrot.org pmichaud at svn.parrot.org
Sun Sep 27 06:10:53 UTC 2009


Author: pmichaud
Date: Sun Sep 27 06:10:51 2009
New Revision: 41513
URL: https://trac.parrot.org/parrot/changeset/41513

Log:
[build]:  Revert r41512; create parrot_nqp as part of default build.

Modified:
   branches/pct-rx/config/gen/makefiles/root.in

Modified: branches/pct-rx/config/gen/makefiles/root.in
==============================================================================
--- branches/pct-rx/config/gen/makefiles/root.in	Sun Sep 27 05:56:48 2009	(r41512)
+++ branches/pct-rx/config/gen/makefiles/root.in	Sun Sep 27 06:10:51 2009	(r41513)
@@ -495,6 +495,7 @@
 PBC_TO_EXE          := $(CUR_DIR)/pbc_to_exe$(EXE)
 PARROT_CONFIG       := $(CUR_DIR)/parrot_config$(EXE)
 PIRC                := $(CUR_DIR)/pirc$(EXE)
+NQP                 := $(CUR_DIR)/parrot_nqp$(EXE)
 
 # Installable executables
 INSTALLABLEPARROT   := $(CUR_DIR)/installable_parrot$(EXE)
@@ -576,15 +577,16 @@
 
 all : \
     corevm \
+    docs \
 #IF(has_glut):    $(LIBGLUTCB_SO) \
+    compilers \
     $(DIS) \
     $(PARROT_CONFIG) \
     $(PBC_TO_EXE) \
     $(PBCMERGE) \
     $(PDB) \
     $(PDUMP) \
-    compilers \
-    docs \
+    $(NQP) \
 
 corevm : \
     flags_dummy \
@@ -810,6 +812,10 @@
 	$(CP) compilers/pirc/pirc$(EXE) $(PIRC)
 	$(CHMOD) 0755 $(PIRC)
 
+$(NQP) : $(PBC_TO_EXE) compilers/nqp/nqp.pbc
+	$(CP) compilers/nqp/nqp.pbc parrot_nqp.pbc
+	$(PBC_TO_EXE) parrot_nqp.pbc
+
 $(MINIPARROT) : $(SRC_DIR)/main$(O) $(GEN_HEADERS) $(LIBPARROT) \
     lib/Parrot/OpLib/core.pm $(SRC_DIR)/null_config$(O)
 	$(LINK) @ld_out@$@ $(SRC_DIR)/main$(O) $(SRC_DIR)/null_config$(O) \


More information about the parrot-commits mailing list