Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replace some 'make' with '$(MAKE)' (jnthn++)
  • Loading branch information
pmichaud committed Aug 31, 2012
1 parent f84a334 commit c4268e0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions tools/build/Makefile.in
Expand Up @@ -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"
Expand All @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion tools/star/Makefile
Expand Up @@ -65,7 +65,7 @@ manifest: modules/zavolaj/lib
rm MANIFEST.1

tarball: manifest
[ -n "$(VERSION)" ] || ( echo "\nTry 'make release VERSION=yyyy.mm'\n\n"; exit 1 )
[ -n "$(VERSION)" ] || ( echo "\nTry '$(MAKE) release VERSION=yyyy.mm'\n\n"; exit 1 )
[ -d $(STAR_REL) ] || ln -s . $(STAR_REL)
$(PREFIX) $(STAR_REL)/ MANIFEST | \
tar -zcv -T - -f $(STAR_TGZ)
Expand Down

0 comments on commit c4268e0

Please sign in to comment.