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

25
iocs/Makefile Normal file
View File

@@ -0,0 +1,25 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS += acsIOC
include $(TOP)/configure/RULES_TOP
uninstallTargets = $(foreach dir, $(DIRS), $(dir)$(DIVIDER)uninstall)
uninstall: $(uninstallTargets)
define UNINSTALL_template
$(1)$(DIVIDER)uninstall:
$(MAKE) -C $(1) uninstall
endef
$(foreach dir, $(DIRS), $(eval $(call UNINSTALL_template,$(dir))))
.PHONY: uninstall $(uninstallTargets)
realuninstallTargets = $(foreach dir, $(DIRS), $(dir)$(DIVIDER)realuninstall)
realuninstall: $(realuninstallTargets)
define REALUNINSTALL_template
$(1)$(DIVIDER)realuninstall:
$(MAKE) -C $(1) realuninstall
endef
$(foreach dir, $(DIRS), $(eval $(call REALUNINSTALL_template,$(dir))))
.PHONY: realuninstall $(realuninstallTargets)