commit 347d0cc3dd1d75134d87cd2951be730265f88ede
parent f30b0f355bdb50d2d517addab2b1a5432ee2e05f
Author: Jordan Ritter <jpr5@darkridge.com>
Date: Wed, 15 Nov 2006 01:47:58 +0000
oops, swap order of clean commands so that subsequent recursive
invocations of make don't complain about missing files
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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