From 257a35a0e00b7952470d02fa56e269f60d265fb1 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 25 Jul 2002 20:26:41 +0000 Subject: [PATCH] subdirs.mk: Add forgotten rm -rf {variable name} --- make/subdirs.mk | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/make/subdirs.mk b/make/subdirs.mk index 5d9fcf96..eb40f382 100644 --- a/make/subdirs.mk +++ b/make/subdirs.mk @@ -1,3 +1,8 @@ +clean.var: + rm -rf $(CLEAN) +distclean.var: + rm -rf $(DISTCLEAN) + ifdef SUBDIRS all.dirs: @@ -11,8 +16,8 @@ distclean.dirs: all: all.dirs install: install.dirs -clean: clean.dirs -distclean: distclean.dirs +clean: clean.dirs clean.var +distclean: distclean.dirs distclean.var else