[svn:parrot] r37311 - in trunk/languages/pynie: . config/makefiles

fperrad at svn.parrot.org fperrad at svn.parrot.org
Wed Mar 11 18:04:17 UTC 2009


Author: fperrad
Date: Wed Mar 11 18:04:17 2009
New Revision: 37311
URL: https://trac.parrot.org/parrot/changeset/37311

Log:
[Pynie] re-run mk_language_shell.pl

Added:
   trunk/languages/pynie/Configure.pl   (contents, props changed)
Modified:
   trunk/languages/pynie/config/makefiles/root.in
   trunk/languages/pynie/pynie.pir

Added: trunk/languages/pynie/Configure.pl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ trunk/languages/pynie/Configure.pl	Wed Mar 11 18:04:17 2009	(r37311)
@@ -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: trunk/languages/pynie/config/makefiles/root.in
==============================================================================
--- trunk/languages/pynie/config/makefiles/root.in	Wed Mar 11 12:43:54 2009	(r37310)
+++ trunk/languages/pynie/config/makefiles/root.in	Wed Mar 11 18:04:17 2009	(r37311)
@@ -2,72 +2,114 @@
 # $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: pynie.pbc
-
-SOURCES = pynie.pir \
+SOURCES := \
   src/gen_grammar.pir \
   src/gen_actions.pir \
+  src/gen_builtins.pir \
+  src/parser/indent.pir \
+  pynie.pir
+
+BUILTINS_PIR := \
+  src/builtins/funcs.pir \
   src/builtins/io.pir \
   src/builtins/lists.pir \
-  src/builtins/oper.pir \
-  src/builtins/funcs.pir \
-  src/parser/indent.pir
+  src/builtins/oper.pir
+
+DOCS := README
+
+BUILD_CLEANUPS := \
+  pynie.pbc \
+  "src/gen_*.pir" \
+  "*.c" \
+  "*$(O)" \
+  pynie at exe@ \
+#IF(win32):  parrot-pynie.exe \
+#IF(win32):  parrot-pynie.iss \
+#IF(win32):  "setup-parrot-*.exe" \
+  installable_pynie at exe@
+
+TEST_CLEANUPS :=
 
 # the default target
-pynie.pbc: $(PARROT) $(PERL6GRAMMAR) $(NQP) $(PCT) $(SOURCES)
+build: pynie.pbc
+
+all: build pynie at exe@ installable
+
+pynie.pbc: $(SOURCES)
 	$(PARROT) $(PARROT_ARGS) -o pynie.pbc pynie.pir
 
+pynie at exe@: pynie.pbc
+	$(PBC_TO_EXE) pynie.pbc
+
 src/gen_grammar.pir: $(PERL6GRAMMAR) src/parser/Grammar.pg
 	$(PARROT) $(PARROT_ARGS) $(PERL6GRAMMAR) \
 	    --output=src/gen_grammar.pir 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) --target=pir \
 	    --output=src/gen_actions.pir src/parser/Actions.pm
 
+src/gen_builtins.pir: $(BUILTINS_PIR)
+	$(CAT) $(BUILTINS_PIR) > src/gen_builtins.pir
+
+installable: installable_pynie at exe@
+
+installable_pynie at exe@: pynie.pbc
+	$(PBC_TO_EXE) pynie.pbc --install
 
-# regenerate the Makefile
 Makefile: config/makefiles/root.in
-	cd $(BUILD_DIR) && $(RECONFIGURE) --step=gen::languages --languages=pynie
+	$(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:               pynie.pbc"
+	@echo "  build:             pynie.pbc"
 	@echo "                     This is the default."
+	@echo "  pynie at exe@          Self-hosting binary not to be installed."
+	@echo "  all:               pynie.pbc pynie 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:"
@@ -79,22 +121,46 @@
 	@echo "  help:              Print this help message."
 	@echo ""
 
-test: all
-	$(PERL) t/harness t/00-parrot
+test: build
+	$(PERL) -I$(LIB_DIR)/tools/lib t/harness
 
-# this target has nothing to do
-testclean:
+# basic run for missing libs
+test-installable: installable
+	echo "1" | ./installable_pynie at exe@
+
+install: installable
+	$(CP) installable_pynie at exe@ $(BIN_DIR)/parrot-pynie at exe@
+	$(CHMOD) 0755 $(BIN_DIR)/parrot-pynie at exe@
+	-$(MKPATH) $(LIB_DIR)/languages/pynie
+	$(CP) pynie.pbc $(LIB_DIR)/languages/pynie/pynie.pbc
+#	-$(MKPATH) $(MANDIR)/man1
+#	$(POD2MAN) doc/running.pod > $(MANDIR)/man1/parrot-pynie.1
+	-$(MKPATH) $(DOC_DIR)/languages/pynie
+	$(CP) $(DOCS) $(DOC_DIR)/languages/pynie
+
+uninstall:
+	$(RM_F) $(BIN_DIR)/parrot-pynie at exe@
+	$(RM_RF) $(LIB_DIR)/languages/pynie
+#	$(RM_F) $(MANDIR)/man1/parrot-pynie.1
+	$(RM_RF) $(DOC_DIR)/languages/pynie
+
+win32-inno-installer: installable
+#	-$(MKPATH) man/man1
+#	$(POD2MAN) doc/running.pod > man/man1/parrot-pynie.1
+#	-$(MKPATH) man/html
+#	pod2html --infile doc/running.pod --outfile man/html/parrot-pynie.html
+	$(CP) installable_pynie at exe@ parrot-pynie.exe
+	$(PERL) $(LIB_DIR)/tools/dev/mk_inno_language.pl pynie
+	iscc parrot-pynie.iss
 
-CLEANUPS = \
-  pynie.pbc \
-  src/gen_grammar.pir \
-  src/gen_actions.pir \
+testclean:
+	$(RM_F) $(TEST_CLEANUPS)
 
 clean:
-	$(RM_RF) $(CLEANUPS)
+	$(RM_F) $(TEST_CLEANUPS) $(BUILD_CLEANUPS)
 
-realclean: clean
-	$(RM_RF) Makefile
+realclean:
+	$(RM_F) $(TEST_CLEANUPS) $(BUILD_CLEANUPS) Makefile
 
 distclean: realclean
 
@@ -102,3 +168,4 @@
 #   mode: makefile
 # End:
 # vim: ft=make:
+

Modified: trunk/languages/pynie/pynie.pir
==============================================================================
--- trunk/languages/pynie/pynie.pir	Wed Mar 11 12:43:54 2009	(r37310)
+++ trunk/languages/pynie/pynie.pir	Wed Mar 11 18:04:17 2009	(r37311)
@@ -33,11 +33,7 @@
 .include 'src/gen_grammar.pir'
 .include 'src/gen_actions.pir'
 .include 'src/parser/indent.pir'
-
-.include 'src/builtins/funcs.pir'
-.include 'src/builtins/io.pir'
-.include 'src/builtins/lists.pir'
-.include 'src/builtins/oper.pir'
+.include 'src/gen_builtins.pir'
 
 
 .sub '__onload' :load :init


More information about the parrot-commits mailing list