From: Ralf 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-Tag: v8.0.0~13276 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cfd3a09ef305d02ef2c1dbc4577bcf25597c88d;p=dealii.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