TOP=../.. include $(TOP)/configure/CONFIG #---------------------------------------- # ADD MACRO DEFINITIONS AFTER THIS LINE #============================= # Build the IOC support library LIBRARY_IOC += uScopeBiasSupport # Install devXxxSoft.dbd into /dbd DBD += uScopeBiasSupport.dbd # Compile and add the code to the support library uScopeBiasSupport_SRCS += drvuScopeBias.cpp uScopeBiasSupport_SRCS += drvuScopeBiasBoard.cpp uScopeBiasSupport_LIBS += $(EPICS_BASE_IOC_LIBS) #============================= # Build the IOC application PROD_IOC = uScopeBias # uScopeBias.dbd will be created and installed DBD += uScopeBias.dbd # uScopeBias.dbd will be made up from these files: uScopeBias_DBD += uScopeBiasInlcude.dbd # uScopeBias_registerRecordDeviceDriver.cpp derives from uScopeBias.dbd uScopeBias_SRCS += uScopeBias_registerRecordDeviceDriver.cpp # Build the main IOC entry point on workstation OSs. uScopeBias_SRCS_DEFAULT += uScopeBiasMain.cpp uScopeBias_SRCS_vxWorks += -nil- # Add support from base/src/vxWorks if needed #uScopeBias_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary # Link in the code from the support library uScopeBias_LIBS += uScopeBiasSupport uScopeBias_LIBS += std uScopeBias_LIBS += busy uScopeBias_LIBS += calc autosave uScopeBias_LIBS += sscan uScopeBias_LIBS += asyn uScopeBias_LIBS += seq pv # Finally link to the EPICS Base libraries uScopeBias_LIBS += $(EPICS_BASE_IOC_LIBS) #============================= include $(TOP)/configure/RULES #---------------------------------------- # ADD RULES AFTER THIS LINE