-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
63 lines (59 loc) · 1.9 KB
/
Makefile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
DIRS += configure
DIRS += makeSupport
DIRS += asyn
asyn_DEPEND_DIRS = configure
DIRS += asyn/asynPortDriver/unittest
asyn/asynPortDriver/unittest_DEPEND_DIRS = asyn
ifneq ($(EPICS_LIBCOM_ONLY),YES)
DIRS += testApp
testApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testApp
DIRS += testArrayRingBufferApp
testArrayRingBufferApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testArrayRingBufferApp
DIRS += testAsynPortDriverApp
testAsynPortDriverApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testAsynPortDriverApp
DIRS += testBroadcastApp
testBroadcastApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testBroadcastApp
DIRS += testConnectApp
testConnectApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testConnectApp
DIRS += testEpicsApp
testEpicsApp_DEPEND_DIRS = testApp asyn
iocBoot_DEPEND_DIRS += testEpicsApp
DIRS += testErrorsApp
testErrorsApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testErrorsApp
DIRS += testGpibApp
testGpibApp_DEPEND_DIRS = testApp asyn
iocBoot_DEPEND_DIRS += testGpibApp
DIRS += testGpibSerialApp
testGpibSerialApp_DEPEND_DIRS = testApp testGpibApp
iocBoot_DEPEND_DIRS += testGpibSerialApp
ifdef SNCSEQ
DIRS += testIPServerApp
testIPServerApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testIPServerApp
endif
DIRS += testManagerApp
testManagerApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testManagerApp
DIRS += testOutputReadbackApp
testOutputReadbackApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testOutputReadbackApp
DIRS += testOutputCallbackApp
testOutputCallbackApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testOutputCallbackApp
DIRS += testUsbtmcApp
testUsbtmcApp_DEPEND_DIRS = asyn
iocBoot_DEPEND_DIRS += testUsbtmcApp
DIRS += iocBoot
endif
DIRS += testAsynPortClientApp
testAsynPortClientApp_DEPEND_DIRS = asyn
include $(TOP)/configure/RULES_TOP