mirror of
https://github.com/Binary-Coalescence/motorDSM.git
synced 2025-08-04 21:55:40 -05:00
Applied patch to update Makefiles, RELEASE and CONFIG_SITE files
This commit is contained in:
25
iocs/Makefile
Normal file
25
iocs/Makefile
Normal 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)
|
||||
|
Reference in New Issue
Block a user