From 473739e3c8235b8dee10669d9fa490e49c02b04b Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 30 Apr 2001 17:16:50 +0000 Subject: [PATCH] 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 --- deal.II/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 -- 2.39.5