Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add a perl6-debug target to the Makefile.
  • Loading branch information
pmichaud committed Aug 31, 2012
1 parent c4268e0 commit f28d3a8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tools/build/Makefile.in
Expand Up @@ -81,17 +81,19 @@ modules-install: rakudo-install
@echo "== Installing binaries"
$(PERL) tools/build/bin-install.pl $(DESTDIR)$(PERL6_INSTALL) $(DESTDIR)$(PARROT_BIN_DIR) modules/ufo/bin/ufo modules/panda/bin/panda

modules-test:
$(PERL) tools/build/modules-test.pl $(CURDIR) $(DESTDIR)$(PERL6_INSTALL) modules/MODULES.txt

perl6-debug: $(RD_EXE)

$(RD_EXE): modules-install
$(NQP_EXE) --vmlibs=perl6_group,perl6_ops --target=pir \
--output=$(RD_PIR) $(RD_DIR)/bin/perl6-debug.nqp
$(PARROT_EXE) -o $(RD_PBC) $(RD_PIR)
$(PBC_TO_EXE) $(RD_PBC)
$(CHMOD) 755 $(RD_EXE)

modules-test:
$(PERL) tools/build/modules-test.pl $(CURDIR) $(DESTDIR)$(PERL6_INSTALL) modules/MODULES.txt

perl6-debug-install: $(RD_EXE)
perl6-debug-install: perl6-debug
$(CP) $(RD_EXE) $(DESTDIR)$(PARROT_BIN_DIR)
$(CHMOD) 755 $(DESTDIR)$(PARROT_BIN_DIR)/perl6-debug$(EXE)

Expand Down

0 comments on commit f28d3a8

Please sign in to comment.