From: hartmann Date: Tue, 23 Aug 2005 13:06:56 +0000 (+0000) Subject: Fix distclean target: clean-common-scripts must be the last command as make_dependenc... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=459932185e0ea4711065ed7967839122cec0edc2;p=dealii-svn.git Fix distclean target: clean-common-scripts must be the last command as make_dependencies is required by all other targets. git-svn-id: https://svn.dealii.org/trunk@11311 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/Makefile b/deal.II/Makefile index 8548efa670..e75c8131ba 100644 --- a/deal.II/Makefile +++ b/deal.II/Makefile @@ -178,10 +178,10 @@ clean-tests: clean-common-scripts: cd $D/common/scripts && $(MAKE) clean -distclean: clean \ - clean-common-scripts +distclean: clean cd lib && $(MAKE) distclean -cd tests && $(MAKE) distclean + $(MAKE) clean-common-scripts