0
|
1 |
# CONFIG - Load build configuration data
|
|
2 |
#
|
|
3 |
# Do not make changes to this file!
|
|
4 |
|
|
5 |
# Allow user to override where the build rules come from
|
|
6 |
RULES = $(EPICS_BASE)
|
|
7 |
|
|
8 |
# RELEASE files point to other application tops
|
|
9 |
include $(TOP)/configure/RELEASE
|
|
10 |
-include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH).Common
|
|
11 |
ifdef T_A
|
|
12 |
-include $(TOP)/configure/RELEASE.Common.$(T_A)
|
|
13 |
-include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH).$(T_A)
|
|
14 |
endif
|
|
15 |
|
|
16 |
CONFIG = $(RULES)/configure
|
|
17 |
include $(CONFIG)/CONFIG
|
|
18 |
|
|
19 |
# Override the Base definition:
|
|
20 |
INSTALL_LOCATION = $(TOP)
|
|
21 |
|
|
22 |
# CONFIG_SITE files contain other build configuration settings
|
|
23 |
include $(TOP)/configure/CONFIG_SITE
|
|
24 |
-include $(TOP)/configure/CONFIG_SITE.$(EPICS_HOST_ARCH).Common
|
|
25 |
ifdef T_A
|
|
26 |
-include $(TOP)/configure/CONFIG_SITE.Common.$(T_A)
|
|
27 |
-include $(TOP)/configure/CONFIG_SITE.$(EPICS_HOST_ARCH).$(T_A)
|
|
28 |
endif
|
|
29 |
|