IOCDOSEApp/src/Makefile
author Heinz Junkes <junkes@fhi-berlin.mpg.de>
Wed, 05 Jun 2013 14:34:28 +0200
changeset 0 50cbed80af1a
child 5 85c191e174df
permissions -rw-r--r--
Add IOCDOSE to repository

TOP=../..

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

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

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

# IOCDOSE.dbd will be made up from these files:
IOCDOSE_DBD += base.dbd
IOCDOSE_DBD += drvAsynIPPort.dbd
IOCDOSE_DBD += iocshGlobalCommands.dbd
IOCDOSE_DBD += asSupport.dbd
IOCDOSE_DBD += devIocStats.dbd
IOCDOSE_DBD += devTimestampWorkaround.dbd

# Streamdevice
IOCDOSE_DBD += stream.dbd


# Include dbd files from all support applications:
#IOCDOSE_DBD += xxx.dbd

# Add all the support libraries needed by this IOC
IOCDOSE_LIBS += devTimestampWorkaround
IOCDOSE_LIBS += devIocStats
IOCDOSE_LIBS += autosave
IOCDOSE_LIBS += asyn
IOCDOSE_LIBS += stream


# IOCDOSE_registerRecordDeviceDriver.cpp derives from IOCDOSE.dbd
IOCDOSE_SRCS += IOCDOSE_registerRecordDeviceDriver.cpp

# Build the main IOC entry point on workstation OSs.
IOCDOSE_SRCS_DEFAULT += IOCDOSEMain.cpp
IOCDOSE_SRCS_vxWorks += -nil-

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

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

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

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