31 lines
726 B
Makefile
31 lines
726 B
Makefile
# Use the PSI build system
|
|
include /ioc/tools/driver.makefile
|
|
|
|
MODULE=pmacv3
|
|
BUILDCLASSES=Linux
|
|
EPICS_VERSIONS=7.0.7
|
|
ARCH_FILTER=RHEL%
|
|
|
|
# Additional module dependencies
|
|
REQUIRED+=asynMotor
|
|
REQUIRED+=sinqMotor
|
|
|
|
# Specify the version of sinqMotor we want to build against
|
|
sinqMotor_VERSION=0.3.0
|
|
|
|
# These headers allow to depend on this library for derived drivers.
|
|
HEADERS += src/pmacv3Axis.h
|
|
HEADERS += src/pmacv3Controller.h
|
|
|
|
# Source files to build
|
|
SOURCES += src/pmacv3Axis.cpp
|
|
SOURCES += src/pmacv3Controller.cpp
|
|
|
|
# Store the record files
|
|
TEMPLATES += db/pmacv3.db
|
|
|
|
# This file registers the motor-specific functions in the IOC shell.
|
|
DBDS += src/pmacv3.dbd
|
|
|
|
USR_CFLAGS += -Wall -Wextra -Weffc++ -Wunused-result # -Werror
|