Navigation Menu

Skip to content

Commit

Permalink
More Configure.pl updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick R. Michaud committed Feb 4, 2009
1 parent 7d7f1af commit 8449537
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Configure.pl
Expand Up @@ -106,8 +106,8 @@ sub done {
You can now use 'make' to build Rakudo Perl.
After that, you can use 'make test' to run some local tests,
or 'make spectest' to obtain a copy of the spectest suite
and test that.
or 'make spectest' to check out (via svn) a copy of the Perl 6
official test suite and run its tests.
END
exit 0;
Expand Down
22 changes: 10 additions & 12 deletions config/makefiles/root.in
Expand Up @@ -4,11 +4,18 @@
# arguments we want to run parrot with
PARROT_ARGS =

# places to look for things
# values from parrot_config
BUILD_DIR = @build_dir@
LOAD_EXT = @load_ext@
O = @o@
EXE = @exe@
MAKE = @make_c@
PERL = @perl@
RM_F = @rm_f@

# Various paths
PARROT_DYNEXT = $(BUILD_DIR)/runtime/parrot/dynext
PGE_LIBRARY = $(BUILD_DIR)/runtime/parrot/library/PGE
PERL6GRAMMAR = $(PGE_LIBRARY)/Perl6Grammar.pbc
PERL6GRAMMAR = $(BUILD_DIR)/runtime/parrot/library/PGE/Perl6Grammar.pbc
NQP = $(BUILD_DIR)/compilers/nqp/nqp.pbc
PCT = $(BUILD_DIR)/runtime/parrot/library/PCT.pbc
PMC_DIR = src/pmc
Expand All @@ -17,23 +24,14 @@ OPSLIB = perl6
OPS_FILE = src/ops/perl6.ops

# Set up extensions
LOAD_EXT = @load_ext@
O = @o@
EXE = @exe@

# Setup some commands
MAKE = @make_c@
PERL = @perl@
RM_F = @rm_f@
PARROT = ../../parrot$(EXE)
CAT = $(PERL) -MExtUtils::Command -e cat
BUILD_DYNPMC = $(PERL) $(BUILD_DIR)/tools/build/dynpmc.pl
BUILD_DYNOPS = $(PERL) $(BUILD_DIR)/tools/build/dynoplibs.pl
RECONFIGURE = $(PERL) $(BUILD_DIR)/tools/dev/reconfigure.pl
PBC_TO_EXE = $(BUILD_DIR)/pbc_to_exe$(EXE)
#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@

SOURCES = perl6.pir \
src/gen_grammar.pir \
Expand Down

0 comments on commit 8449537

Please sign in to comment.