Allow use reftrack iocsh commands w/o pulling in server (or client) singleton, or including any .dbd (for P2P).
24 lines
571 B
Makefile
24 lines
571 B
Makefile
TOP = ../..
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
LIBRARY += pvAccessIOC
|
|
|
|
pvAccessIOC_LIBS += pvAccess pvData
|
|
pvAccessIOC_LIBS += $(EPICS_BASE_IOC_LIBS)
|
|
|
|
SHRLIB_VERSION ?= $(EPICS_PVA_MAJOR_VERSION).$(EPICS_PVA_MINOR_VERSION).$(EPICS_PVA_MAINTENANCE_VERSION)
|
|
|
|
INC += pv/syncChannelFind.h
|
|
INC += pv/iocshelper.h
|
|
INC += pv/iocreftrack.h
|
|
|
|
DBD += PVACommonRegister.dbd
|
|
DBD += PVAServerRegister.dbd
|
|
DBD += PVAClientRegister.dbd
|
|
|
|
pvAccessIOC_SRCS += PVAServerRegister.cpp
|
|
pvAccessIOC_SRCS += PVAClientRegister.cpp
|
|
pvAccessIOC_SRCS += reftrackioc.cpp
|
|
|
|
include $(TOP)/configure/RULES
|