From f727e55b59a667a891d753a6b3886ccdcc223aaf Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 2 Jun 2009 12:46:20 +0000 Subject: [PATCH] subdirs.mk: Remove *.done after clean, seems a bit assymmetric though --- make/subdirs.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/make/subdirs.mk b/make/subdirs.mk index b6900949..5f111955 100644 --- a/make/subdirs.mk +++ b/make/subdirs.mk @@ -10,6 +10,7 @@ install.dirs: set -e; for dir in $(SUBDIRS); do make -C $$dir install; done clean.dirs: set -e; for dir in $(SUBDIRS); do make -C $$dir clean; done + rm -f *.done distclean.dirs: set -e; for dir in $(SUBDIRS); do make -C $$dir distclean; done