aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f911c2a..f39a14c 100644
--- a/Makefile
+++ b/Makefile
@@ -40,6 +40,8 @@ CLEAR_VARS := $(BUILD_SYSTEM)/clear_vars.make
BUILD_HOST_EXECUTABLE := $(BUILD_SYSTEM)/host_executable.make
BUILD_HOST_STATIC_LIBRARY := $(BUILD_SYSTEM)/host_static_library.make
+DEPENDENCY_DIRS :=
+
all: libraries executables
EXECUTABLES :=
LIBRARIES :=
@@ -67,5 +69,5 @@ clean-config:
rm -f $(CONFIG_MAKE) $(CONFIG_H)
# include dependency information
-CLEAN_OBJS_DIRS := $(sort $(CLEAN_OBJS_DIRS))
--include $(wildcard $(CLEAN_OBJS_DIRS:%=%/*.d))
+DEPENDENCY_DIRS := $(sort $(DEPENDENCY_DIRS))
+-include $(wildcard $(DEPENDENCY_DIRS:%=%/*.d)) \ No newline at end of file