40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# Use the PSI build system
|
|
include /ioc/tools/driver.makefile
|
|
|
|
MODULE=seleneGuide
|
|
BUILDCLASSES=Linux
|
|
EPICS_VERSIONS=7.0.7
|
|
ARCH_FILTER=RHEL%
|
|
|
|
# Additional module dependencies
|
|
REQUIRED+=motorBase
|
|
|
|
# Specify the version of motorBase we want to build against
|
|
motorBase_VERSION=7.2.2
|
|
|
|
# Specify the version of sinqMotor we want to build against
|
|
sinqMotor_VERSION=0.11.0
|
|
|
|
# Specify the version of turboPmac we want to build against
|
|
turboPmac_VERSION=0.10.0
|
|
|
|
# These headers allow to depend on this library for derived drivers.
|
|
HEADERS += src/seleneGuideController.h
|
|
HEADERS += src/seleneLiftAxis.h
|
|
HEADERS += src/seleneAngleAxis.h
|
|
HEADERS += src/seleneOffsetAxis.h
|
|
|
|
# Source files to build
|
|
SOURCES += src/seleneGuideController.cpp
|
|
SOURCES += src/seleneLiftAxis.cpp
|
|
SOURCES += src/seleneAngleAxis.cpp
|
|
SOURCES += src/seleneOffsetAxis.cpp
|
|
|
|
# Store the record files
|
|
TEMPLATES += db/seleneGuide.db
|
|
|
|
# This file registers the motor-specific functions in the IOC shell.
|
|
DBDS += src/seleneGuide.dbd
|
|
|
|
USR_CFLAGS += -Wall -Wextra -Weffc++ -Wunused-result -Wextra -Werror # -Wpedantic // Does not work because EPICS macros trigger warnings
|