From 9ab445518a01e9b10b5d3e1c99f45d81d874278b Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 10 Jun 2012 19:39:40 +0000 Subject: Add OBJDIR optional build variable to the BULD build system module, to allow the user project to relocate the output object and dependency files to a different directory. --- Demos/Device/LowLevel/makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Demos/Device/LowLevel/makefile') diff --git a/Demos/Device/LowLevel/makefile b/Demos/Device/LowLevel/makefile index 99e7c24a1..0e1dfae05 100644 --- a/Demos/Device/LowLevel/makefile +++ b/Demos/Device/LowLevel/makefile @@ -23,7 +23,9 @@ ifeq ($(MAKELEVEL), 10) endif all: +ifeq ($(OBJDIR),) @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) clean all;) +endif %: @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) $@;) -- cgit v1.2.3