From: guido Date: Fri, 7 Jun 2002 09:48:50 +0000 (+0000) Subject: Introducing target veryclean to remove libs X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83ff652e527e91f46c067262d22530cd72417e8c;p=dealii-svn.git Introducing target veryclean to remove libs git-svn-id: https://svn.dealii.org/trunk@6023 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/Makefile b/deal.II/Makefile index 998a5602a5..cd20330a0b 100644 --- a/deal.II/Makefile +++ b/deal.II/Makefile @@ -156,8 +156,11 @@ clean-lib: clean-tests: -cd tests && $(MAKE) clean +veryclean: clean + cd lib ; $(MAKE) veryclean .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 clean-tests TAGS TODO + clean-doc clean-examples clean-lib clean-tests veryclean \ + TAGS TODO diff --git a/deal.II/lib/Makefile b/deal.II/lib/Makefile index 1bef1ce18a..327f01ea0f 100644 --- a/deal.II/lib/Makefile +++ b/deal.II/lib/Makefile @@ -8,7 +8,6 @@ default: # clean everything clean: clean-objects - -rm lib* # only clean object files, not libraries clean-objects: clean-base clean-lac \ @@ -24,6 +23,8 @@ clean-base clean-lac clean-1d clean-2d clean-3d: clean-contrib: -rm contrib/*/*.o +veryclean: clean + -rm -f lib* .PHONY: clean clean-objects .PHONY: clean-base clean-lac clean-1d clean-2d clean-3d