Applied patch to update Makefiles, RELEASE and CONFIG_SITE files

This commit is contained in:
kpetersn
2019-04-09 11:26:32 -05:00
parent 2846bfa018
commit 57b6582e69
11 changed files with 96 additions and 87 deletions

View File

@@ -9,6 +9,10 @@ DIRS += $(wildcard *App)
DIRS += $(wildcard *Top)
DIRS += $(wildcard iocBoot)
ifeq ($(BUILD_IOCS), YES)
DIRS += $(wildcard iocs)
endif
# The build order is controlled by these dependency rules:
# All dirs except configure depend on configure
@@ -28,4 +32,13 @@ iocBoot_DEPEND_DIRS += $(filter %App,$(DIRS))
# Add any additional dependency rules here:
include $(TOP)/configure/RULES_TOP
# iocs depend on all *Sup and *App dirs
$(foreach dir, $(filter %iocs, $(DIRS)), \
$(eval $(dir)_DEPEND_DIRS += $(filter %Sup %App, $(DIRS))))
# Only support top-level targets when submodule is built stand-alone
ifeq ($(INSTALL_LOCATION),$(MOTOR))
include $(TOP)/configure/RULES_DIRS
else
include $(TOP)/configure/RULES_TOP
endif