From a186c75bd645317c76ed24afbcad6bc1fb9431e4 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Sun, 25 Dec 2005 02:15:04 +0100 Subject: [PATCH] Fix cleanall by including $(SUBDIRS-) and $(OBJS-) when INCLUDE_ALL is set This is necessary since some CONFIG_* variables can have no value set. So this is really a workaround. --- Makefile.lib | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.lib b/Makefile.lib index 9e779c39f..503ffe7e2 100644 --- a/Makefile.lib +++ b/Makefile.lib @@ -98,9 +98,15 @@ ifdef INCLUDE_ALL ifdef SUBDIRS-no SUBDIRS += $(SUBDIRS-no) endif +ifdef SUBDIRS- +SUBDIRS += $(SUBDIRS-) +endif ifdef OBJS-no OBJS += $(OBJS-no) endif +ifdef OBJS- +OBJS += $(OBJS-) +endif endif