TOP=../.. include $(TOP)/configure/CONFIG #---------------------------------------- # ADD MACRO DEFINITIONS AFTER THIS LINE #============================= #============================= # Build the IOC application PROD_IOC = dcGas # dcGas.dbd will be created and installed DBD += dcGas.dbd # dcGas.dbd will be made up from these files: dcGas_DBD += base.dbd dcGas_DBD += brooks0254.dbd # Include dbd files from all support applications: #dcGas_DBD += xxx.dbd # Add all the support libraries needed by this IOC dcGas_LIBS += brooks0254 # dcGas_registerRecordDeviceDriver.cpp derives from dcGas.dbd dcGas_SRCS += dcGas_registerRecordDeviceDriver.cpp # Build the main IOC entry point on workstation OSs. dcGas_SRCS_DEFAULT += dcGasMain.cpp dcGas_SRCS_vxWorks += -nil- # Add support from base/src/vxWorks if needed #dcGas_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary # Finally link to the EPICS Base libraries dcGas_LIBS += $(EPICS_BASE_IOC_LIBS) #=========================== include $(TOP)/configure/RULES #---------------------------------------- # ADD RULES AFTER THIS LINE