Skip to content

Commit

Permalink
oops, swap order of clean commands so that subsequent recursive
Browse files Browse the repository at this point in the history
invocations of make don't complain about missing files
  • Loading branch information
jpr5 committed Nov 15, 2006
1 parent f30b0f3 commit 347d0cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regex-0.12/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 347d0cc

Please sign in to comment.