From 6739b5d3b7fecb71c4e6524cb69333ec8ce428ad Mon Sep 17 00:00:00 2001 From: guido Date: Fri, 11 Oct 2002 07:20:09 +0000 Subject: [PATCH] veryclean changed to distclean git-svn-id: https://svn.dealii.org/trunk@6630 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/Makefile | 9 +++++---- deal.II/lib/Makefile | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/deal.II/Makefile b/deal.II/Makefile index 679f33d105..448bfdeb96 100644 --- a/deal.II/Makefile +++ b/deal.II/Makefile @@ -29,7 +29,8 @@ help: @echo "= TODO : create a \"TODO\" file from the source files =" @echo "= TAGS : create a TAGS file from include and source files =" @echo "= =" - @echo "= clean : removes all object files, libraries, etc in subdirs =" + @echo "= clean : removes all object files in subdirs =" + @echo "= distclean : removes all object files, libraries, etc in subdirs =" @echo "========================================================================" @@ -151,11 +152,11 @@ clean-lib: clean-tests: -cd tests && $(MAKE) clean -veryclean: clean - cd lib ; $(MAKE) veryclean +distclean: clean + cd lib ; $(MAKE) distclean .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 veryclean \ + clean-doc clean-examples clean-lib clean-tests distclean \ TAGS TODO diff --git a/deal.II/lib/Makefile b/deal.II/lib/Makefile index 362fea8774..19f175ff9f 100644 --- a/deal.II/lib/Makefile +++ b/deal.II/lib/Makefile @@ -24,7 +24,7 @@ clean-base clean-lac clean-1d clean-2d clean-3d: clean-contrib: -rm contrib/*/*.o -veryclean: clean +distclean: clean -rm -f lib* bin/* .PHONY: clean clean-objects -- 2.39.5