32 lines
898 B
Makefile
32 lines
898 B
Makefile
# Use the PSI build system
|
|
include /ioc/tools/driver.makefile
|
|
|
|
MODULE=masterMacs
|
|
BUILDCLASSES=Linux
|
|
EPICS_VERSIONS=7.0.7
|
|
ARCH_FILTER=RHEL%
|
|
|
|
# Specify the version of asynMotor we want to build against
|
|
motorBase_VERSION=7.2.2
|
|
|
|
# These headers allow to depend on this library for derived drivers.
|
|
HEADERS += src/masterMacsAxis.h
|
|
HEADERS += src/masterMacsController.h
|
|
|
|
# Source files to build
|
|
SOURCES += sinqMotor/src/msgPrintControl.cpp
|
|
SOURCES += sinqMotor/src/sinqAxis.cpp
|
|
SOURCES += sinqMotor/src/sinqController.cpp
|
|
SOURCES += src/masterMacsAxis.cpp
|
|
SOURCES += src/masterMacsController.cpp
|
|
|
|
# Store the record files
|
|
TEMPLATES += sinqMotor/db/asynRecord.db
|
|
TEMPLATES += sinqMotor/db/sinqMotor.db
|
|
|
|
# This file registers the motor-specific functions in the IOC shell.
|
|
DBDS += sinqMotor/src/sinqMotor.dbd
|
|
DBDS += src/masterMacs.dbd
|
|
|
|
USR_CFLAGS += -Wall -Wextra -Weffc++ -Wunused-result -Wextra -Werror
|