From 347d0cc3dd1d75134d87cd2951be730265f88ede Mon Sep 17 00:00:00 2001 From: Jordan Ritter Date: Wed, 15 Nov 2006 01:47:58 +0000 Subject: [PATCH] oops, swap order of clean commands so that subsequent recursive invocations of make don't complain about missing files --- regex-0.12/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regex-0.12/Makefile.in b/regex-0.12/Makefile.in index 782f5c9..5d15167 100644 --- a/regex-0.12/Makefile.in +++ b/regex-0.12/Makefile.in @@ -71,13 +71,13 @@ default all install TAGS check:: # added config.cache and config.log to targets clean mostlyclean: - rm -f *.o for d in $(subdirs); do (cd $$d; $(MAKE) $(makeargs) $@); done + rm -f *.o extraclean realclean distclean: + for d in $(subdirs); do (cd $$d; $(MAKE) $(makeargs) $@); done rm -f patch* *~* *\#* *.orig *.rej *.bak core a.out rm -f Makefile config.status config.cache config.log regex.o - for d in $(subdirs); do (cd $$d; $(MAKE) $(makeargs) $@); done .PHONY: install mostlyclean clean distclean extraclean realclean TAGS check