-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
40 lines (39 loc) · 1.02 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
# Makefile for edm top level
TOP = ../..
ifdef EPICS_HOST_ARCH
include $(TOP)/configure/CONFIG
DIRS += util
DIRS += lib
DIRS += epicsPv
DIRS += logPv
DIRS += proxyPv
DIRS += calcPv
DIRS += locPv
DIRS += baselib
DIRS += edmMain
DIRS += giflib
DIRS += pnglib
DIRS += pvFactory
DIRS += choiceButton
DIRS += videowidget
DIRS += triumflib
DIRS += diamondlib
DIRS += indicator
DIRS += multiSegRampButton
DIRS += slaclib
include $(TOP)/configure/RULES_DIRS
else
TOP = ../..
ifneq ($(wildcard $(TOP)/config)x,x)
# New Makefile.Host config file location
include $(TOP)/config/CONFIG_EXTENSIONS
DIRS = util lib epicsPv calcPv locPv baselib edmMain giflib pnglib pvFactory choiceButton
include $(TOP)/config/RULES_DIRS
else
# Old Makefile.Unix config file location
EPICS=../../..
include $(EPICS)/config/CONFIG_EXTENSIONS
DIRS = util lib epicsPv calcPv locPv baselib edmMain giflib pnglib pvFactory choiceButton
include $(EPICS)/config/RULES_DIRS
endif
endif