From: wolf Date: Fri, 15 Aug 2003 19:48:33 +0000 (+0000) Subject: Only remove dependency generation script on distclean, since it is X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bb001570e87d1c7ab9796c1808fc9d849c16724;p=dealii-svn.git Only remove dependency generation script on distclean, since it is used even when we don't want to have the object files around any more. git-svn-id: https://svn.dealii.org/trunk@7944 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/Makefile b/deal.II/Makefile index f45d8213b8..1b97611283 100644 --- a/deal.II/Makefile +++ b/deal.II/Makefile @@ -131,8 +131,7 @@ TAGS: clean: common/scripts/make_dependencies \ clean-contrib clean-base clean-lac clean-dealII \ - clean-doc clean-examples clean-lib clean-tests \ - clean-common-scripts + clean-doc clean-examples clean-lib clean-tests -rm -f TODO common/TAGS clean-contrib: @@ -163,7 +162,8 @@ clean-tests: clean-common-scripts: cd $D/common/scripts && $(MAKE) clean -distclean: clean +distclean: clean \ + clean-common-scripts cd lib && $(MAKE) distclean -cd tests && $(MAKE) distclean