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