TOP=../..

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

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

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

# transferArray.dbd will be made up from these files:
transferArray_DBD += base.dbd
transferArray_DBD += transferArrayRecord.dbd

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

# Add all the support libraries needed by this IOC
#transferArray_LIBS += xxx

# transferArray_registerRecordDeviceDriver.cpp derives from transferArray.dbd
transferArray_SRCS += transferArrayRecord.c
transferArray_SRCS += transferArray_registerRecordDeviceDriver.cpp

# Build the main IOC entry point on workstation OSs.
transferArray_SRCS_DEFAULT += transferArrayMain.cpp
transferArray_SRCS_vxWorks += -nil-

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

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

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

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