examples are moved to project exampleCPP; update doc

This commit is contained in:
mrkraimer
2016-01-22 11:03:33 -05:00
parent 9c800f5ebf
commit 0f415a3e39
31 changed files with 365 additions and 1946 deletions

View File

@ -1,20 +1,10 @@
#Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) $(filter-out $(DIRS), configure)
DIRS := $(DIRS) $(filter-out $(DIRS), src)
DIRS := $(DIRS) $(filter-out $(DIRS), example)
DIRS += configure
EMBEDDED_TOPS := $(EMBEDDED_TOPS) $(filter-out $(EMBEDDED_TOPS), example)
define DIR_template
$(1)_DEPEND_DIRS = configure
endef
$(foreach dir, $(filter-out configure,$(DIRS)),$(eval $(call DIR_template,$(dir))))
define EMB_template
$(1)_DEPEND_DIRS = src
endef
$(foreach dir, $(EMBEDDED_TOPS),$(eval $(call EMB_template,$(dir))))
DIRS += src
src_DEPEND_DIRS = configure
include $(TOP)/configure/RULES_TOP