[svn:languages] r53 - in json/trunk: . config/makefiles

fperrad at svn.parrot.org fperrad at svn.parrot.org
Wed Mar 11 16:39:02 UTC 2009


Author: fperrad
Date: Wed Mar 11 16:39:02 2009
New Revision: 53
URL: https://trac.parrot.org/languages/changeset/53

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

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

Added: json/trunk/Configure.pl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ json/trunk/Configure.pl	Wed Mar 11 16:39:02 2009	(r53)
@@ -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: json/trunk/MANIFEST
==============================================================================
--- json/trunk/MANIFEST	Wed Mar 11 16:28:47 2009	(r52)
+++ json/trunk/MANIFEST	Wed Mar 11 16:39:02 2009	(r53)
@@ -1,3 +1,4 @@
+Configure.pl                                 [json]
 MAINTAINER                                   [json]
 config/makefiles/root.in                     [json]
 json.pir                                     [json]

Modified: json/trunk/config/makefiles/root.in
==============================================================================
--- json/trunk/config/makefiles/root.in	Wed Mar 11 16:28:47 2009	(r52)
+++ json/trunk/config/makefiles/root.in	Wed Mar 11 16:39:02 2009	(r53)
@@ -2,87 +2,112 @@
 ## $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: json.pbc
-
-JSON_GROUP = $(PMC_DIR)/json_group$(LOAD_EXT)
-
-SOURCES = json.pir \
+SOURCES := \
   src/gen_grammar.pir \
   src/gen_actions.pir \
   src/gen_builtins.pir \
-#  $(JSON_GROUP)
+  json.pir
+
+BUILTINS_PIR := \
+  src/builtins/say.pir
+
+DOCS := README
 
-BUILTINS_PIR = \
-  src/builtins/say.pir \
+BUILD_CLEANUPS := \
+  json.pbc \
+  "src/gen_*.pir" \
+  "*.c" \
+  "*$(O)" \
+  json at exe@ \
+#IF(win32):  parrot-json.exe \
+#IF(win32):  parrot-json.iss \
+#IF(win32):  "setup-parrot-*.exe" \
+  installable_json at exe@
 
-# PMCS = json
-# PMC_SOURCES = $(PMC_DIR)/json.pmc
+TEST_CLEANUPS :=
 
 # the default target
-json.pbc: $(PARROT) $(SOURCES)
+build: json.pbc
+
+all: build json at exe@ installable
+
+json.pbc: $(SOURCES)
 	$(PARROT) $(PARROT_ARGS) -o json.pbc json.pir
 
+json at exe@: json.pbc
+	$(PBC_TO_EXE) json.pbc
+
 src/gen_grammar.pir: $(PERL6GRAMMAR) src/parser/grammar.pg src/parser/grammar-oper.pg
 	$(PARROT) $(PARROT_ARGS) $(PERL6GRAMMAR) \
 	    --output=src/gen_grammar.pir \
 	    src/parser/grammar.pg \
-	    src/parser/grammar-oper.pg \
+	    src/parser/grammar-oper.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
 
 src/gen_builtins.pir: $(BUILTINS_PIR)
-	$(CAT) $(BUILTINS_PIR) >src/gen_builtins.pir
+	$(CAT) $(BUILTINS_PIR) > src/gen_builtins.pir
+
+installable: installable_json at exe@
 
-$(JSON_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_json at exe@: json.pbc
+	$(PBC_TO_EXE) json.pbc --install
 
-# regenerate the Makefile
 Makefile: config/makefiles/root.in
-	cd $(BUILD_DIR) && $(RECONFIGURE) --step=gen::languages --languages=json
+	$(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:               json.pbc"
+	@echo "  build:             json.pbc"
 	@echo "                     This is the default."
+	@echo "  json at exe@           Self-hosting binary not to be installed."
+	@echo "  all:               json.pbc json 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:"
@@ -94,34 +119,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 = \
-  json.pbc \
-  src/gen_grammar.pir \
-  src/gen_actions.pir \
-  src/gen_builtins.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_json at exe@
+
+install: installable
+	$(CP) installable_json at exe@ $(BIN_DIR)/parrot-json at exe@
+	$(CHMOD) 0755 $(BIN_DIR)/parrot-json at exe@
+	-$(MKPATH) $(LIB_DIR)/languages/json
+	$(CP) json.pbc $(LIB_DIR)/languages/json/json.pbc
+#	-$(MKPATH) $(MANDIR)/man1
+#	$(POD2MAN) doc/running.pod > $(MANDIR)/man1/parrot-json.1
+#	-$(MKPATH) $(DOC_DIR)/languages/json
+#	$(CP) $(DOCS) $(DOC_DIR)/languages/json
+
+uninstall:
+	$(RM_F) $(BIN_DIR)/parrot-json at exe@
+	$(RM_RF) $(LIB_DIR)/languages/json
+#	$(RM_F) $(MANDIR)/man1/parrot-json.1
+#	$(RM_RF) $(DOC_DIR)/languages/json
+
+win32-inno-installer: installable
+#	-$(MKPATH) man/man1
+#	$(POD2MAN) doc/running.pod > man/man1/parrot-json.1
+#	-$(MKPATH) man/html
+#	pod2html --infile doc/running.pod --outfile man/html/parrot-json.html
+	$(CP) installable_json at exe@ parrot-json.exe
+	$(PERL) $(LIB_DIR)/tools/dev/mk_inno_language.pl json
+	iscc parrot-json.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
 
@@ -129,3 +166,4 @@
 #   mode: makefile
 # End:
 # vim: ft=make:
+


More information about the parrot-commits mailing list