Files
motorBase/motorApp/AerotechSrc/Makefile
T
kmpeters ff82293e58 Moved the Newport and Aerotech sequence-program registrars
to a dedicated dbd file so can be properly omitted from the
build when SNCSEQ isn't defined.
2015-03-26 14:18:53 +00:00

37 lines
649 B
Makefile

# Makefile
TOP = ../..
include $(TOP)/configure/CONFIG
# The following are used for debugging messages.
#!USR_CXXFLAGS += -DDEBUG
DBD += devAerotech.dbd
ifdef SNCSEQ
DBD += devAerotechSeq.dbd
endif
LIBRARY_IOC = Aerotech
# Aerotech driver support.
SRCS += AerotechRegister.cc
SRCS += devSoloist.cc drvSoloist.cc
SRCS += drvEnsembleAsyn.cc
SRCS += drvA3200Asyn.cc
# EnsemblePSOFly.db support
SRCS += concatString.c
ifdef SNCSEQ
# Ensemble trajectory support
SRCS += EnsembleTrajectoryScan.st
endif
Aerotech_LIBS += motor asyn
ifdef SNCSEQ
Aerotech_LIBS += seq pv
endif
Aerotech_LIBS += $(EPICS_BASE_IOC_LIBS)
include $(TOP)/configure/RULES