lvC3mcc/mccApp/src/Makefile~
author uhoppe
Wed, 19 Jun 2013 15:34:43 +0200
changeset 3 1b83de4729dc
permissions -rw-r--r--
Oerlikon Center Three Multi-Channel Controllers.

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

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

# 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