forked from epics-modules/mrfioc2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (18 loc) · 691 Bytes
/
Makefile
File metadata and controls
28 lines (18 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#SHELL=cmd.exe
#Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
DIRS := configure mrfCommon evrApp mrmShared evgMrmApp evrMrmApp mrfApp evrFRIBApp testApp 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,$(DIRS))
evrApp_DEPEND_DIRS += mrfCommon
mrmShared_DEPEND_DIRS += mrfCommon
evrMrmApp_DEPEND_DIRS += evrApp mrmShared
evgMrmApp_DEPEND_DIRS += evrApp mrmShared
evrFRIBApp_DEPEND_DIRS += evrApp
mrfApp_DEPEND_DIRS += evrMrmApp evgMrmApp evrFRIBApp
testApp_DEPEND_DIRS += mrfCommon
include $(TOP)/configure/RULES_TOP