1
|
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 = pg9520
|
|
12 |
# pg9520.dbd will be created and installed
|
|
13 |
DBD += pg9520.dbd
|
|
14 |
|
|
15 |
# pg9520.dbd will be made up from these files:
|
|
16 |
pg9520_DBD += base.dbd
|
|
17 |
|
|
18 |
# Include dbd files from all support applications:
|
|
19 |
#pg9520_DBD += xxx.dbd
|
|
20 |
|
|
21 |
# Add all the support libraries needed by this IOC
|
|
22 |
#pg9520_LIBS += xxx
|
|
23 |
|
|
24 |
# pg9520_registerRecordDeviceDriver.cpp derives from pg9520.dbd
|
|
25 |
pg9520_SRCS += pg9520_registerRecordDeviceDriver.cpp
|
|
26 |
|
|
27 |
# Build the main IOC entry point on workstation OSs.
|
|
28 |
pg9520_SRCS_DEFAULT += pg9520Main.cpp
|
|
29 |
pg9520_SRCS_vxWorks += -nil-
|
|
30 |
|
|
31 |
# Add support from base/src/vxWorks if needed
|
|
32 |
#pg9520_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary
|
|
33 |
|
|
34 |
# Finally link to the EPICS Base libraries
|
|
35 |
pg9520_LIBS += $(EPICS_BASE_IOC_LIBS)
|
|
36 |
|
|
37 |
#===========================
|
|
38 |
|
|
39 |
include $(TOP)/configure/RULES
|
|
40 |
#----------------------------------------
|
|
41 |
# ADD RULES AFTER THIS LINE
|
|
42 |
|