49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
TOP=../..
|
|
|
|
include $(TOP)/configure/CONFIG
|
|
#----------------------------------------
|
|
# ADD MACRO DEFINITIONS AFTER THIS LINE
|
|
#=============================
|
|
|
|
#=============================
|
|
# Build the IOC application
|
|
|
|
PROD_IOC = sinqEPICS
|
|
# sinqEPICS.dbd will be created and installed
|
|
DBD += sinqEPICS.dbd
|
|
|
|
# sinqEPICS.dbd will be made up from these files:
|
|
sinqEPICS_DBD += base.dbd
|
|
|
|
# Include dbd files from all support applications:
|
|
sinqEPICS_DBD += sinq.dbd
|
|
sinqEPICS_DBD += pmacAsynIPPort.dbd pmacAsynMotorPort.dbd
|
|
|
|
# Add all the support libraries needed by this IOC
|
|
sinqEPICS_LIBS += motor asyn std anc350 anc350AsynMotor stream busy
|
|
|
|
# sinqEPICS_registerRecordDeviceDriver.cpp derives from sinqEPICS.dbd
|
|
sinqEPICS_SRCS += sinqEPICS_registerRecordDeviceDriver.cpp
|
|
sinqEPICS_SRCS += EL734Driver.cpp devScalerEL737.c pmacAsynIPPort.c
|
|
sinqEPICS_SRCS += pmacController.cpp pmacAxis.cpp
|
|
sinqEPICS_SRCS += NanotecDriver.cpp stptok.cpp
|
|
sinqEPICS_SRCS += PhytronDriver.cpp
|
|
|
|
|
|
# Build the main IOC entry point on workstation OSs.
|
|
sinqEPICS_SRCS_DEFAULT += sinqEPICSMain.cpp
|
|
sinqEPICS_SRCS_vxWorks += -nil-
|
|
|
|
# Add support from base/src/vxWorks if needed
|
|
#sinqEPICS_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary
|
|
|
|
# Finally link to the EPICS Base libraries
|
|
sinqEPICS_LIBS += $(EPICS_BASE_IOC_LIBS)
|
|
|
|
#===========================
|
|
|
|
include $(TOP)/configure/RULES
|
|
#----------------------------------------
|
|
# ADD RULES AFTER THIS LINE
|
|
|