Eliminate infinite recursion in makefiles.

This commit is contained in:
Juan Jose Garcia Ripoll 2012-01-01 14:55:02 +01:00
parent 031e657d11
commit 265838ec1a
2 changed files with 5 additions and 5 deletions

View file

@ -115,9 +115,9 @@ distclean: clean
realclean: distclean
check:
cd build; $(MAKE) check
cd build && $(MAKE) check
recheck:
cd tests; $(MAKE) recheck
cd build && $(MAKE) recheck
# ==================== Various means of distribution ====================

View file

@ -216,7 +216,7 @@ uninstall:
clean: mostlyclean
$(RM) -r *
mostlyclean: clean_lisp
(cd tests; $(MAKE) clean)
(cd tests && $(MAKE) clean)
for i in $(SUBDIRS); do (test -d $$i && cd $$i && $(MAKE) clean); done
$(RM) ecl_min$(EXE) bin/ecl$(EXE) help.doc core a.out TAGS
$(RM) config.version config.log config.cache
@ -239,9 +239,9 @@ test_changes:
# Run test suite
#
check:
cd tests; $(MAKE)
cd tests && $(MAKE)
recheck:
cd tests; $(MAKE) clean; $(MAKE)
cd tests && $(MAKE) clean && $(MAKE)
#
# Rebuild ECL using its own image and compare. Does not work
# right now.