Eliminate infinite recursion in makefiles.
This commit is contained in:
parent
031e657d11
commit
265838ec1a
2 changed files with 5 additions and 5 deletions
|
|
@ -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 ====================
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue