|
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 = tv301sf |
|
12 # tv301sf.dbd will be created and installed |
|
13 DBD += tv301sf.dbd |
|
14 |
|
15 # tv301sf.dbd will be made up from these files: |
|
16 tv301sf_DBD += base.dbd |
|
17 |
|
18 # Include dbd files from all support applications: |
|
19 #tv301sf_DBD += xxx.dbd |
|
20 #uh |
|
21 tv301sf_DBD += drvAsynIPPort.dbd |
|
22 tv301sf_DBD += iocshGlobalCommands.dbd |
|
23 tv301sf_DBD += stream.dbd |
|
24 |
|
25 # Add all the support libraries needed by this IOC |
|
26 #tv301sf_LIBS += xxx |
|
27 #uh |
|
28 tv301sf_LIBS += asyn |
|
29 tv301sf_LIBS += stream |
|
30 |
|
31 # tv301sf_registerRecordDeviceDriver.cpp derives from tv301sf.dbd |
|
32 tv301sf_SRCS += tv301sf_registerRecordDeviceDriver.cpp |
|
33 |
|
34 # Build the main IOC entry point on workstation OSs. |
|
35 tv301sf_SRCS_DEFAULT += tv301sfMain.cpp |
|
36 tv301sf_SRCS_vxWorks += -nil- |
|
37 |
|
38 # Add support from base/src/vxWorks if needed |
|
39 #tv301sf_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary |
|
40 |
|
41 # Finally link to the EPICS Base libraries |
|
42 tv301sf_LIBS += $(EPICS_BASE_IOC_LIBS) |
|
43 |
|
44 #=========================== |
|
45 |
|
46 include $(TOP)/configure/RULES |
|
47 #---------------------------------------- |
|
48 # ADD RULES AFTER THIS LINE |