From: Chris Hanson Date: Wed, 6 Dec 2000 05:01:26 +0000 (+0000) Subject: Don't execute "*clean" rule in subdirectory if there's no makefile. X-Git-Tag: 20090517-FFI~3137 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=d5311818a35b6b334799f9970023e08bcc629389;p=mit-scheme.git Don't execute "*clean" rule in subdirectory if there's no makefile. --- diff --git a/v7/src/Makefile b/v7/src/Makefile index 39bc571e6..92bf889c5 100644 --- a/v7/src/Makefile +++ b/v7/src/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 2000/12/06 04:58:05 cph Exp $ +# $Id: Makefile,v 1.7 2000/12/06 05:01:26 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -44,7 +44,7 @@ mostlyclean clean distclean maintainer-clean: if test -f $${SUBDIR}/Makefile; then \ echo "making $@ in $${SUBDIR}"; \ (cd $${SUBDIR} && $(MAKE) $@); \ - fi; + fi; \ done .PHONY: all setup tags TAGS mostlyclean clean distclean maintainer-clean