lvC3mcc/mccApp/src/Makefile
author uhoppe
Tue, 18 Mar 2014 16:09:31 +0100
changeset 6 3f4c961d93ed
parent 3 1b83de4729dc
permissions -rw-r--r--
Change MPL initialisation and precision.

TOP=../..

include $(TOP)/configure/CONFIG
#----------------------------------------
#  ADD MACRO DEFINITIONS AFTER THIS LINE
#=============================

#=============================
# Build the IOC application

PROD_IOC = mcc
# mcc.dbd will be created and installed
DBD += mcc.dbd

# mcc.dbd will be made up from these files:
mcc_DBD += base.dbd

# Include dbd files from all support applications:
#mcc_DBD += xxx.dbd
#uh
mcc_DBD += drvAsynSerialPort.dbd
#mcc_DBD += drvAsynIPPort.dbd
mcc_DBD += iocshGlobalCommands.dbd
mcc_DBD += stream.dbd

# Add all the support libraries needed by this IOC
#mcc_LIBS += xxx
#uh
mcc_LIBS += asyn
mcc_LIBS += stream 

# mcc_registerRecordDeviceDriver.cpp derives from mcc.dbd
mcc_SRCS += mcc_registerRecordDeviceDriver.cpp

# Build the main IOC entry point on workstation OSs.
mcc_SRCS_DEFAULT += mccMain.cpp
mcc_SRCS_vxWorks += -nil-

# Add support from base/src/vxWorks if needed
#mcc_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary

# Finally link to the EPICS Base libraries
mcc_LIBS += $(EPICS_BASE_IOC_LIBS)

#===========================

include $(TOP)/configure/RULES
#----------------------------------------
#  ADD RULES AFTER THIS LINE