|
1 TOP=../.. |
|
2 |
|
3 include $(TOP)/configure/CONFIG |
|
4 #---------------------------------------- |
|
5 # ADD MACRO DEFINITIONS AFTER THIS LINE |
|
6 #============================= |
|
7 |
|
8 #============================= |
|
9 # Build the IOC application |
|
10 |
|
11 PROD_IOC = IOCDOSE |
|
12 # IOCDOSE.dbd will be created and installed |
|
13 DBD += IOCDOSE.dbd |
|
14 |
|
15 # IOCDOSE.dbd will be made up from these files: |
|
16 IOCDOSE_DBD += base.dbd |
|
17 IOCDOSE_DBD += drvAsynIPPort.dbd |
|
18 IOCDOSE_DBD += iocshGlobalCommands.dbd |
|
19 IOCDOSE_DBD += asSupport.dbd |
|
20 IOCDOSE_DBD += devIocStats.dbd |
|
21 IOCDOSE_DBD += devTimestampWorkaround.dbd |
|
22 |
|
23 # Streamdevice |
|
24 IOCDOSE_DBD += stream.dbd |
|
25 |
|
26 |
|
27 # Include dbd files from all support applications: |
|
28 #IOCDOSE_DBD += xxx.dbd |
|
29 |
|
30 # Add all the support libraries needed by this IOC |
|
31 IOCDOSE_LIBS += devTimestampWorkaround |
|
32 IOCDOSE_LIBS += devIocStats |
|
33 IOCDOSE_LIBS += autosave |
|
34 IOCDOSE_LIBS += asyn |
|
35 IOCDOSE_LIBS += stream |
|
36 |
|
37 |
|
38 # IOCDOSE_registerRecordDeviceDriver.cpp derives from IOCDOSE.dbd |
|
39 IOCDOSE_SRCS += IOCDOSE_registerRecordDeviceDriver.cpp |
|
40 |
|
41 # Build the main IOC entry point on workstation OSs. |
|
42 IOCDOSE_SRCS_DEFAULT += IOCDOSEMain.cpp |
|
43 IOCDOSE_SRCS_vxWorks += -nil- |
|
44 |
|
45 # Add support from base/src/vxWorks if needed |
|
46 #IOCDOSE_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary |
|
47 |
|
48 # Finally link to the EPICS Base libraries |
|
49 IOCDOSE_LIBS += $(EPICS_BASE_IOC_LIBS) |
|
50 |
|
51 #=========================== |
|
52 |
|
53 include $(TOP)/configure/RULES |
|
54 #---------------------------------------- |
|
55 # ADD RULES AFTER THIS LINE |
|
56 |