bc3335d4f9
Record has x and y-coordinate fields and a timestamp and also provides a service which sets (x,y) to a sequence of values. An RPC client application (move) sends positions as an array.
42 lines
991 B
Makefile
42 lines
991 B
Makefile
TOP=../..
|
|
|
|
include $(TOP)/configure/CONFIG
|
|
#----------------------------------------
|
|
# ADD MACRO DEFINITIONS AFTER THIS LINE
|
|
#=============================
|
|
|
|
#==================================================
|
|
# Build an IOC support library
|
|
#
|
|
|
|
DBD += exampleRPC.dbd
|
|
|
|
#=============================
|
|
# build an ioc application
|
|
|
|
PROD_IOC += exampleRPC
|
|
|
|
|
|
# <name>_registerRecordDeviceDriver.cpp will be created from <name>.dbd
|
|
exampleRPC_SRCS += exampleRPC_registerRecordDeviceDriver.cpp
|
|
exampleRPC_SRCS_DEFAULT += exampleRPCMain.cpp
|
|
exampleRPC_SRCS_vxWorks += -nil-
|
|
|
|
|
|
# The following adds support from base/src/vxWorks
|
|
exampleRPC_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary
|
|
|
|
exampleRPC_LIBS += exampleRPC
|
|
exampleRPC_LIBS += pvDatabase
|
|
exampleRPC_LIBS += pvaSrv
|
|
exampleRPC_LIBS += pvAccess
|
|
exampleRPC_LIBS += pvData
|
|
exampleRPC_LIBS += $(EPICS_BASE_IOC_LIBS)
|
|
|
|
#===========================
|
|
|
|
include $(TOP)/configure/RULES
|
|
#----------------------------------------
|
|
# ADD RULES AFTER THIS LINE
|
|
|