New file
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
TOP = ..
|
||||
include $(TOP)/configure/CONFIG
|
||||
|
||||
DIRS := $(wildcard *IOC)
|
||||
|
||||
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)
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
#Makefile at top of application tree
|
||||
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))
|
||||
include $(TOP)/configure/RULES_TOP
|
||||
@@ -0,0 +1,9 @@
|
||||
TOP = ..
|
||||
include $(TOP)/configure/CONFIG
|
||||
|
||||
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*))
|
||||
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*))
|
||||
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*))
|
||||
|
||||
include $(TOP)/configure/RULES_DIRS
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
TOP = ..
|
||||
include $(TOP)/configure/CONFIG
|
||||
DIRS += $(wildcard *ioc*)
|
||||
DIRS += $(wildcard as*)
|
||||
include $(EPICS_BASE)/configure/RULES_DIRS
|
||||
|
||||
Reference in New Issue
Block a user