From: Wolfgang Bangerth Date: Mon, 30 Apr 2001 17:16:50 +0000 (+0000) Subject: if that directory exists, go into 'tests' and clean up there as well X-Git-Tag: v8.0.0~19276 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dde6c18b3d4266870970c0d2fafe7dfed06923ae;p=dealii.git if that directory exists, go into 'tests' and clean up there as well git-svn-id: https://svn.dealii.org/trunk@4512 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/Makefile b/deal.II/Makefile index 5ddf8bac29..2d5fb3b3e3 100644 --- a/deal.II/Makefile +++ b/deal.II/Makefile @@ -151,7 +151,7 @@ TAGS: $(filter-out %/forward_declarations.h, \ @cd $D/common ; etags $^ -clean: clean-contrib clean-base clean-lac clean-dealII clean-doc clean-examples clean-lib +clean: clean-contrib clean-base clean-lac clean-dealII clean-doc clean-examples clean-lib clean-tests -rm -f TODO common/TAGS clean-contrib: @@ -175,8 +175,12 @@ clean-examples: clean-lib: -rm $(LIBDIR)/lib* +# if that directory exists, go into 'tests' and clean up there as well +clean-tests: + -cd tests ; $(MAKE) clean + .PHONY: base baseg lac lacg 1d 2d 3d 1dg 2dg 3dg all \ online-doc printable-doc tex-doc contrib \ clean clean-contrib clean-base clean-lac clean-dealII \ - clean-doc clean-examples clean-lib TAGS TODO + clean-doc clean-examples clean-lib clean-tests TAGS TODO