forked from epics-rip/exampleCPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
27 lines (23 loc) · 803 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Makefile for the EPICS V4 exampleCPP module
TOP = .
include $(TOP)/configure/CONFIG
#EMBEDDED_TOPS += $(TOP)/ChannelArchiverService
# beginning of service support
EMBEDDED_TOPS += $(TOP)/scalarLimit
EMBEDDED_TOPS += $(TOP)/powerSupplyRecord
EMBEDDED_TOPS += $(TOP)/controlRecord
EMBEDDED_TOPS += $(TOP)/helloPutGetRecord
EMBEDDED_TOPS += $(TOP)/helloRPCRecord
EMBEDDED_TOPS += $(TOP)/linkRecord
# beginning of non support
EMBEDDED_TOPS += $(TOP)/exampleClient
EMBEDDED_TOPS += $(TOP)/pvaClient
EMBEDDED_TOPS += $(TOP)/pvaClientMultiChannel
EMBEDDED_TOPS += $(TOP)/json
EMBEDDED_TOPS += $(TOP)/arrayPerformance
# beginning of users of service support
EMBEDDED_TOPS += $(TOP)/serviceMain
EMBEDDED_TOPS += $(TOP)/database
DIRS := configure
DIRS += $(EMBEDDED_TOPS)
include $(TOP)/configure/RULES_TOP