32 lines
838 B
Makefile
32 lines
838 B
Makefile
# This build the sinqMotor base class
|
|
include /ioc/tools/driver.makefile
|
|
|
|
MODULE=sinqMotor
|
|
BUILDCLASSES=Linux
|
|
EPICS_VERSIONS=7.0.7
|
|
ARCH_FILTER=RHEL%
|
|
|
|
# Specify the version of asynMotor we want to build against
|
|
asynMotor_VERSION=7.2.2
|
|
|
|
# Source files to build
|
|
SOURCES += src/msgPrintControl.cpp
|
|
SOURCES += src/sinqAxis.cpp
|
|
SOURCES += src/sinqController.cpp
|
|
|
|
# Headers which allow using this library in concrete driver implementations
|
|
HEADERS += src/msgPrintControl.h
|
|
HEADERS += src/sinqAxis.h
|
|
HEADERS += src/sinqController.h
|
|
|
|
# Store the record files
|
|
TEMPLATES += db/asynRecord.db
|
|
TEMPLATES += db/sinqMotor.db
|
|
|
|
# This file registers the motor-specific functions in the IOC shell.
|
|
DBDS += src/sinqMotor.dbd
|
|
|
|
USR_CFLAGS += -Wall -Wextra -Weffc++ -Wunused-result # -Werror
|
|
|
|
# MISCS would be the place to keep the stream device template files
|