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.
17 lines
226 B
Makefile
17 lines
226 B
Makefile
#Makefile at top of application tree
|
|
TOP = .
|
|
include $(TOP)/configure/CONFIG
|
|
DIRS += configure
|
|
|
|
DIRS += src
|
|
src_DEPEND_DIRS = configure
|
|
|
|
DIRS += ioc
|
|
ioc_DEPEND_DIRS = src
|
|
|
|
DIRS += iocBoot
|
|
|
|
include $(TOP)/configure/RULES_TOP
|
|
|
|
|