diff -r 1b83de4729dc -r 8a2328d953f0 tv301sf/tv301sfApp/src/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tv301sf/tv301sfApp/src/Makefile Mon Mar 10 11:59:21 2014 +0100 @@ -0,0 +1,48 @@ +TOP=../.. + +include $(TOP)/configure/CONFIG +#---------------------------------------- +# ADD MACRO DEFINITIONS AFTER THIS LINE +#============================= + +#============================= +# Build the IOC application + +PROD_IOC = tv301sf +# tv301sf.dbd will be created and installed +DBD += tv301sf.dbd + +# tv301sf.dbd will be made up from these files: +tv301sf_DBD += base.dbd + +# Include dbd files from all support applications: +#tv301sf_DBD += xxx.dbd +#uh +tv301sf_DBD += drvAsynIPPort.dbd +tv301sf_DBD += iocshGlobalCommands.dbd +tv301sf_DBD += stream.dbd + +# Add all the support libraries needed by this IOC +#tv301sf_LIBS += xxx +#uh +tv301sf_LIBS += asyn +tv301sf_LIBS += stream + +# tv301sf_registerRecordDeviceDriver.cpp derives from tv301sf.dbd +tv301sf_SRCS += tv301sf_registerRecordDeviceDriver.cpp + +# Build the main IOC entry point on workstation OSs. +tv301sf_SRCS_DEFAULT += tv301sfMain.cpp +tv301sf_SRCS_vxWorks += -nil- + +# Add support from base/src/vxWorks if needed +#tv301sf_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary + +# Finally link to the EPICS Base libraries +tv301sf_LIBS += $(EPICS_BASE_IOC_LIBS) + +#=========================== + +include $(TOP)/configure/RULES +#---------------------------------------- +# ADD RULES AFTER THIS LINE