author | William |
Thu, 05 Jul 2018 08:48:18 +0000 | |
changeset 4 | 68a4f654dc00 |
parent 2 | 3b3af1ff2783 |
permissions | -rw-r--r-- |
0 | 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 = kstm |
|
12 |
# kstm.dbd will be created and installed |
|
13 |
DBD += kstm.dbd |
|
14 |
||
15 |
# kstm.dbd will be made up from these files: |
|
16 |
kstm_DBD += base.dbd |
|
17 |
||
18 |
# Include dbd files from all support applications: |
|
19 |
#kstm_DBD += xxx.dbd |
|
1
7029db7ac3db
Add adcPi device support
Heinz Junkes <junkes@fhi-berlin.mpg.de>
parents:
0
diff
changeset
|
20 |
kstm_DBD += aSubReadDHT.dbd |
0 | 21 |
kstm_DBD += asyn.dbd |
22 |
kstm_DBD += drvAsynIPPort.dbd |
|
23 |
kstm_DBD += stream.dbd |
|
4 | 24 |
kstm_DBD += calc.dbd |
0 | 25 |
|
26 |
# Add all the support libraries needed by this IOC |
|
27 |
#kstm_LIBS += xxx |
|
28 |
kstm_LIBS += stream |
|
29 |
kstm_LIBS += asyn |
|
4 | 30 |
kstm_LIBS += calc |
0 | 31 |
|
32 |
# kstm_registerRecordDeviceDriver.cpp derives from kstm.dbd |
|
33 |
kstm_SRCS += kstm_registerRecordDeviceDriver.cpp |
|
34 |
||
35 |
#Link locally-provided code into the IOC application |
|
36 |
kstm_SRCS += common_dht_read.c |
|
37 |
kstm_SRCS += pi_2_mmio.c |
|
38 |
kstm_SRCS += pi_2_dht_read.c |
|
1
7029db7ac3db
Add adcPi device support
Heinz Junkes <junkes@fhi-berlin.mpg.de>
parents:
0
diff
changeset
|
39 |
kstm_SRCS += aSubReadDHT.c |
0 | 40 |
|
41 |
# Build the main IOC entry point on workstation OSs. |
|
42 |
kstm_SRCS_DEFAULT += kstmMain.cpp |
|
43 |
kstm_SRCS_vxWorks += -nil- |
|
44 |
||
45 |
# Add support from base/src/vxWorks if needed |
|
46 |
#kstm_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary |
|
47 |
||
48 |
# Finally link to the EPICS Base libraries |
|
49 |
kstm_LIBS += $(EPICS_BASE_IOC_LIBS) |
|
50 |
||
51 |
#=========================== |
|
52 |
||
53 |
include $(TOP)/configure/RULES |
|
54 |
#---------------------------------------- |
|
55 |
# ADD RULES AFTER THIS LINE |
|
56 |