[svn:languages] r48 - in pod/trunk: . config/makefiles

fperrad at svn.parrot.org fperrad at svn.parrot.org
Wed Mar 11 11:30:36 UTC 2009


Author: fperrad
Date: Wed Mar 11 11:30:35 2009
New Revision: 48
URL: https://trac.parrot.org/languages/changeset/48

Log:
[POD] re-run mk_language_shell.pl
Now works with an installed Parrot.

Added:
   pod/trunk/Configure.pl   (contents, props changed)
Modified:
   pod/trunk/   (props changed)
   pod/trunk/MANIFEST
   pod/trunk/config/makefiles/root.in

Added: pod/trunk/Configure.pl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ pod/trunk/Configure.pl	Wed Mar 11 11:30:35 2009	(r48)
@@ -0,0 +1,66 @@
+# Copyright (C) 2009, Parrot Foundation.
+# $Id$
+
+use strict;
+use warnings;
+use 5.008;
+
+#  Get a list of parrot-configs to invoke.
+my @parrot_config_exe = (
+    'parrot/parrot_config',
+    '../../parrot_config',
+    'parrot_config',
+);
+
+#  Get configuration information from parrot_config
+my %config = read_parrot_config(@parrot_config_exe);
+unless (%config) {
+    die "Unable to locate parrot_config.";
+}
+
+#  Create the Makefile using the information we just got
+create_makefiles(%config);
+
+sub read_parrot_config {
+    my @parrot_config_exe = @_;
+    my %config = ();
+    for my $exe (@parrot_config_exe) {
+        no warnings;
+        if (open my $PARROT_CONFIG, '-|', "$exe --dump") {
+            print "Reading configuration information from $exe\n";
+            while (<$PARROT_CONFIG>) {
+                $config{$1} = $2 if (/(\w+) => '(.*)'/);
+            }
+            close $PARROT_CONFIG;
+            last if %config;
+        }
+    }
+    %config;
+}
+
+
+#  Generate Makefiles from a configuration
+sub create_makefiles {
+    my %config = @_;
+    my %makefiles = (
+        'config/makefiles/root.in' => 'Makefile',
+#        'config/makefiles/pmc.in'  => 'src/pmc/Makefile',
+#        'config/makefiles/ops.in'  => 'src/ops/Makefile',
+    );
+    my $build_tool = $config{libdir} . $config{versiondir}
+                   . '/tools/dev/gen_makefile.pl';
+
+    foreach my $template (keys %makefiles) {
+        my $makefile = $makefiles{$template};
+        print "Creating $makefile\n";
+        system($config{perl}, $build_tool, $template, $makefile);
+    }
+}
+
+# Local Variables:
+#   mode: cperl
+#   cperl-indent-level: 4
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:
+

Modified: pod/trunk/MANIFEST
==============================================================================
--- pod/trunk/MANIFEST	Wed Mar 11 11:08:32 2009	(r47)
+++ pod/trunk/MANIFEST	Wed Mar 11 11:30:35 2009	(r48)
@@ -1,3 +1,4 @@
+Configure.pl                                  [pod]
 README                                        [pod]doc
 config/makefiles/root.in                      [pod]
 pod.pir                                       [pod]

Modified: pod/trunk/config/makefiles/root.in
==============================================================================
--- pod/trunk/config/makefiles/root.in	Wed Mar 11 11:08:32 2009	(r47)
+++ pod/trunk/config/makefiles/root.in	Wed Mar 11 11:30:35 2009	(r48)
@@ -2,79 +2,104 @@
 ## $Id$
 
 ## arguments we want to run parrot with
-PARROT_ARGS =
+PARROT_ARGS   :=
 
 ## configuration settings
-BUILD_DIR     = @build_dir@
-LOAD_EXT      = @load_ext@
-O             = @o@
+VERSION       := @versiondir@
+BIN_DIR       := @bin_dir@
+LIB_DIR       := @lib_dir@$(VERSION)
+DOC_DIR       := @doc_dir@$(VERSION)
+MANDIR        := @mandir@$(VERSION)
+
+# Set up extensions
+LOAD_EXT      := @load_ext@
+O             := @o@
+
+# Various paths
+PERL6GRAMMAR  := $(LIB_DIR)/library/PGE/Perl6Grammar.pbc
+NQP           := $(LIB_DIR)/languages/nqp/nqp.pbc
+PCT           := $(LIB_DIR)/library/PCT.pbc
 
 ## Setup some commands
-LN_S          = @lns@
-PERL          = @perl@
-RM_RF         = @rm_rf@
-CP            = @cp@
-PARROT        = ../../parrot at exe@
-CAT           = @cat@
-BUILD_DYNPMC  = $(PERL) $(BUILD_DIR)/tools/build/dynpmc.pl
-RECONFIGURE   = $(PERL) $(BUILD_DIR)/tools/dev/reconfigure.pl
-#CONDITIONED_LINE(darwin):
-#CONDITIONED_LINE(darwin):# MACOSX_DEPLOYMENT_TARGET must be defined for OS X compilation/linking
-#CONDITIONED_LINE(darwin):export MACOSX_DEPLOYMENT_TARGET := @osx_version@
-
-## places to look for things
-PARROT_DYNEXT = $(BUILD_DIR)/runtime/parrot/dynext
-PGE_LIBRARY   = $(BUILD_DIR)/runtime/parrot/library/PGE
-PERL6GRAMMAR  = $(PGE_LIBRARY)/Perl6Grammar.pbc
-NQP           = $(BUILD_DIR)/compilers/nqp/nqp.pbc
-PCT           = $(BUILD_DIR)/runtime/parrot/library/PCT.pbc
+MAKE          := @make_c@
+PERL          := @perl@
+CAT           := @cat@
+CHMOD         := @chmod@
+CP            := @cp@
+MKPATH        := @mkpath@
+RM_F          := @rm_f@
+RM_RF         := @rm_rf@
+POD2MAN       := pod2man
+#IF(parrot_is_shared and not(cygwin or win32)):export LD_RUN_PATH := @blib_dir@:$(LD_RUN_PATH)
+PARROT        := $(BIN_DIR)/parrot at exe@
+PBC_TO_EXE    := $(BIN_DIR)/pbc_to_exe at exe@
+#IF(darwin):
+#IF(darwin):# MACOSX_DEPLOYMENT_TARGET must be defined for OS X compilation/linking
+#IF(darwin):export MACOSX_DEPLOYMENT_TARGET := @osx_version@
 
-PMC_DIR       = src/pmc
-
-all: pod.pbc
-
-POD_GROUP = $(PMC_DIR)/pod_group$(LOAD_EXT)
-
-SOURCES = pod.pir \
+SOURCES := \
   src/gen_grammar.pir \
   src/gen_actions.pir \
-#  $(POD_GROUP)
+  pod.pir
 
-# PMCS = pod
-# PMC_SOURCES = $(PMC_DIR)/pod.pmc
+DOCS := README
+
+BUILD_CLEANUPS := \
+  pod.pbc \
+  "src/gen_*.pir" \
+  "*.c" \
+  "*$(O)" \
+  pod at exe@ \
+#IF(win32):  parrot-pod.exe \
+#IF(win32):  parrot-pod.iss \
+#IF(win32):  "setup-parrot-*.exe" \
+  installable_pod at exe@
+
+TEST_CLEANUPS :=
 
 # the default target
-pod.pbc: $(PARROT) $(SOURCES)
+build: pod.pbc
+
+all: build pod at exe@ installable
+
+pod.pbc: $(SOURCES)
 	$(PARROT) $(PARROT_ARGS) -o pod.pbc pod.pir
 
+pod at exe@: pod.pbc
+	$(PBC_TO_EXE) pod.pbc
+
 src/gen_grammar.pir: $(PERL6GRAMMAR) src/parser/grammar.pg
 	$(PARROT) $(PARROT_ARGS) $(PERL6GRAMMAR) \
 	    --output=src/gen_grammar.pir \
-	    src/parser/grammar.pg \
+	    src/parser/grammar.pg
 
-src/gen_actions.pir: $(NQP) $(PCT) src/parser/actions.pm
+src/gen_actions.pir: $(NQP) src/parser/actions.pm
 	$(PARROT) $(PARROT_ARGS) $(NQP) --output=src/gen_actions.pir \
 	    --target=pir src/parser/actions.pm
 
-$(POD_GROUP): $(PARROT) $(PMC_SOURCES)
-	cd $(PMC_DIR) && $(BUILD_DYNPMC) generate $(PMCS)
-	cd $(PMC_DIR) && $(BUILD_DYNPMC) compile $(PMCS)
-	cd $(PMC_DIR) && $(BUILD_DYNPMC) linklibs $(PMCS)
-	cd $(PMC_DIR) && $(BUILD_DYNPMC) copy --destination=$(PARROT_DYNEXT) $(PMCS)
+installable: installable_pod at exe@
+
+installable_pod at exe@: pod.pbc
+	$(PBC_TO_EXE) pod.pbc --install
 
-# regenerate the Makefile
 Makefile: config/makefiles/root.in
-	cd $(BUILD_DIR) && $(RECONFIGURE) --step=gen::languages --languages=pod
+	$(PERL) Configure.pl
 
 # This is a listing of all targets, that are meant to be called by users
 help:
 	@echo ""
 	@echo "Following targets are available for the user:"
 	@echo ""
-	@echo "  all:               pod.pbc"
+	@echo "  build:             pod.pbc"
 	@echo "                     This is the default."
+	@echo "  pod at exe@            Self-hosting binary not to be installed."
+	@echo "  all:               pod.pbc pod at exe@ installable"
+	@echo "  installable:       Create libs and self-hosting binaries to be installed."
+	@echo "  install:           Install the installable targets and docs."
+	@echo ""
 	@echo "Testing:"
 	@echo "  test:              Run the test suite."
+	@echo "  test-installable:  Test self-hosting targets."
 	@echo "  testclean:         Clean up test results."
 	@echo ""
 	@echo "Cleaning:"
@@ -86,33 +111,46 @@
 	@echo "  help:              Print this help message."
 	@echo ""
 
-test: all
-	$(PERL) t/harness
+test: build
+	$(PERL) -I$(LIB_DIR)/tools/lib t/harness
 
-# this target has nothing to do
-testclean:
-
-CLEANUPS = \
-  pod.pbc \
-  src/gen_grammar.pir \
-  src/gen_actions.pir \
-  $(PMC_DIR)/*.h \
-  $(PMC_DIR)/*.c \
-  $(PMC_DIR)/*.dump \
-  $(PMC_DIR)/*$(O) \
-  $(PMC_DIR)/*$(LOAD_EXT) \
-  $(PMC_DIR)/*.exp \
-  $(PMC_DIR)/*.ilk \
-  $(PMC_DIR)/*.manifest \
-  $(PMC_DIR)/*.pdb \
-  $(PMC_DIR)/*.lib \
+# basic run for missing libs
+test-installable: installable
+	echo "1" | ./installable_pod at exe@
+
+install: installable
+	$(CP) installable_pod at exe@ $(BIN_DIR)/parrot-pod at exe@
+	$(CHMOD) 0755 $(BIN_DIR)/parrot-pod at exe@
+	-$(MKPATH) $(LIB_DIR)/languages/pod
+	$(CP) pod.pbc $(LIB_DIR)/languages/pod/pod.pbc
+#	-$(MKPATH) $(MANDIR)/man1
+#	$(POD2MAN) doc/running.pod > $(MANDIR)/man1/parrot-pod.1
+#	-$(MKPATH) $(DOC_DIR)/languages/pod
+#	$(CP) $(DOCS) $(DOC_DIR)/languages/pod
+
+uninstall:
+	$(RM_F) $(BIN_DIR)/parrot-pod at exe@
+	$(RM_RF) $(LIB_DIR)/languages/pod
+#	$(RM_F) $(MANDIR)/man1/parrot-pod.1
+#	$(RM_RF) $(DOC_DIR)/languages/pod
+
+win32-inno-installer: installable
+#	-$(MKPATH) man/man1
+#	$(POD2MAN) doc/running.pod > man/man1/parrot-pod.1
+#	-$(MKPATH) man/html
+#	pod2html --infile doc/running.pod --outfile man/html/parrot-pod.html
+	$(CP) installable_pod at exe@ parrot-pod.exe
+	$(PERL) $(LIB_DIR)/tools/dev/mk_inno_language.pl pod
+	iscc parrot-pod.iss
 
+testclean:
+	$(RM_F) $(TEST_CLEANUPS)
 
-clean: testclean
-	$(RM_RF) $(CLEANUPS)
+clean:
+	$(RM_F) $(TEST_CLEANUPS) $(BUILD_CLEANUPS)
 
-realclean: clean
-	$(RM_RF) Makefile
+realclean:
+	$(RM_F) $(TEST_CLEANUPS) $(BUILD_CLEANUPS) Makefile
 
 distclean: realclean
 
@@ -120,3 +158,4 @@
 #   mode: makefile
 # End:
 # vim: ft=make:
+


More information about the parrot-commits mailing list