diff --git a/src/makeBaseApp/top/Makefile b/src/makeBaseApp/top/Makefile index c20091615..f0d9ad762 100644 --- a/src/makeBaseApp/top/Makefile +++ b/src/makeBaseApp/top/Makefile @@ -3,17 +3,14 @@ TOP = . include $(TOP)/configure/CONFIG DIRS := $(DIRS) $(filter-out $(DIRS), configure) DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *App)) -DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *app)) DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocBoot)) -DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocboot)) define DIR_template $(1)_DEPEND_DIRS = configure endef $(foreach dir, $(filter-out configure,$(DIRS)),$(eval $(call DIR_template,$(dir)))) -iocBoot_DEPEND_DIRS += $(filter %App %app,$(DIRS)) -iocboot_DEPEND_DIRS += $(filter %App %app,$(DIRS)) +iocBoot_DEPEND_DIRS += $(filter %App,$(DIRS)) include $(TOP)/configure/RULES_TOP