Author: coke
Date: Mon Apr 18 17:04:18 2005
New Revision: 7865

Modified:
   trunk/config/gen/makefiles/root.in
   trunk/languages/tcl/README
Log:
Build PGE by default.

(This simplifies building Tcl)



Modified: trunk/config/gen/makefiles/root.in
==============================================================================
--- trunk/config/gen/makefiles/root.in  (original)
+++ trunk/config/gen/makefiles/root.in  Mon Apr 18 17:04:18 2005
@@ -493,7 +493,7 @@
 #
 ###############################################################################
 
-all : flags_dummy $(PARROT) runtime/parrot/include/parrotlib.pbc 
runtime/parrot/include/config.fpmc docs $(LIBNCI_TEST_SO) $(GEN_LIBRARY) 
dynclasses
+all : flags_dummy $(PARROT) runtime/parrot/include/parrotlib.pbc 
runtime/parrot/include/config.fpmc docs $(LIBNCI_TEST_SO) $(GEN_LIBRARY) 
dynclasses compilers
 
 # constant string support
 .c.str :
@@ -588,6 +588,7 @@
        @echo "  dynclasses-clean:  Proxy for target 'clean' of 
dynclasses/Makefile"
        @echo ""
        @echo "Language implementations:"
+       @echo "  compilers:         Proxy for default target of compilers/pge"
        @echo "  languages:         Proxy for default target of 
languages/Makefile"
        @echo "  languages-test:    Proxy for target 'test' of 
languages/Makefile"
        @echo "  languages-clean:   Proxy for target 'clean' of 
languages/Makefile"
@@ -1050,6 +1051,11 @@
 #
 ###############################################################################
 
+compilers : compilers.dummy
+
+compilers.dummy :
+       $(MAKE_C) compilers/pge
+
 languages : languages.dummy
 
 languages.dummy :

Modified: trunk/languages/tcl/README
==============================================================================
--- trunk/languages/tcl/README  (original)
+++ trunk/languages/tcl/README  Mon Apr 18 17:04:18 2005
@@ -7,10 +7,6 @@
 
  perl Configure.pl && make
 
-Then, build the PGE library: (also from the top level parrot directory)
-
- (cd compilers/pge && make)
-
 Then, type C<make> in this directory. This will
 generate the file C<tcl.pbc> which can then be used to run tcl programs.
 
@@ -27,7 +23,7 @@
 
 =head2 Test Suite
 
-To run the test suite, type "make test". Note - if I<any> tests fail, try
+To run the test suite, type C<make test>. Note - if I<any> tests fail, try
 setting the environment variable C<TEST_PROG_ARGS> to C<-G> and retry.
 
 If the tests now pass, there's a GC bug that needs to be reported to

Reply via email to