From 459932185e0ea4711065ed7967839122cec0edc2 Mon Sep 17 00:00:00 2001 From: hartmann Date: Tue, 23 Aug 2005 13:06:56 +0000 Subject: [PATCH] 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 --- deal.II/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5