aboutsummaryrefslogtreecommitdiff
path: root/tools/build/Makefile.in
diff options
context:
space:
mode:
authorpmichaud <pmichaud@pobox.com>2012-08-31 13:26:20 -0500
committerpmichaud <pmichaud@pobox.com>2012-08-31 13:26:20 -0500
commitc4268e0178cf1e789a92efc1b6167d146247fc6f (patch)
tree40b0b1081198beef3193829e7cb9adf2aa8f2c66 /tools/build/Makefile.in
parentf84a334bf0383b2a487dc853c02275d09c6a4d7e (diff)
Replace some 'make' with '$(MAKE)' (jnthn++)
Diffstat (limited to 'tools/build/Makefile.in')
-rw-r--r--tools/build/Makefile.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/build/Makefile.in b/tools/build/Makefile.in
index 1d24de3..f2c2200 100644
--- a/tools/build/Makefile.in
+++ b/tools/build/Makefile.in
@@ -99,8 +99,8 @@ install: rakudo-install modules-install perl6-debug-install
test:
@echo ""
- @echo "To run the Rakudo compiler tests, use 'make rakudo-test'"
- @echo "To run the Perl 6 spectests, use 'make rakudo-spectest'"
+ @echo "To run the Rakudo compiler tests, use '$(MAKE) rakudo-test'"
+ @echo "To run the Perl 6 spectests, use '$(MAKE) rakudo-spectest'"
@echo ""
@echo "To run tests for individual modules, try:"
@echo " prove -e ./perl6 -r modules/<name>/t"
@@ -109,17 +109,17 @@ test:
## cleaning
clean:
$(RM_F) $(CLEANUPS)
- cd $(RAKUDO_DIR) && make clean
- cd $(NQP_DIR) && make clean
- cd $(PARROT_DIR) && make clean
+ cd $(RAKUDO_DIR) && $(MAKE) clean
+ cd $(NQP_DIR) && $(MAKE) clean
+ cd $(PARROT_DIR) && $(MAKE) clean
distclean: realclean
realclean: clean
$(RM_F) Makefile
- cd $(RAKUDO_DIR) && make realclean
- cd $(NQP_DIR) && make realclean
- cd $(PARROT_DIR) && make realclean
+ cd $(RAKUDO_DIR) && $(MAKE) realclean
+ cd $(NQP_DIR) && $(MAKE) realclean
+ cd $(PARROT_DIR) && $(MAKE) realclean
testclean: