git-svn-id: https://subversion.xor.aps.anl.gov/synApps/areaDetector/trunk@13234 dc6c5ff5-0b8b-c028-a01f-ffb33f00fc8b
32 lines
948 B
Plaintext
Executable File
32 lines
948 B
Plaintext
Executable File
# CONFIG - Load build configuration data
|
|
#
|
|
# Do not make changes to this file!
|
|
|
|
# Allow user to override where the build rules come from
|
|
RULES = $(EPICS_BASE)
|
|
|
|
# RELEASE files point to other application tops
|
|
include $(TOP)/configure/RELEASE
|
|
-include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH)
|
|
-include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH).Common
|
|
ifdef T_A
|
|
-include $(TOP)/configure/RELEASE.Common.$(T_A)
|
|
-include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH).$(T_A)
|
|
endif
|
|
|
|
CONFIG = $(RULES)/configure
|
|
include $(CONFIG)/CONFIG
|
|
|
|
# Override the Base definition:
|
|
INSTALL_LOCATION = $(TOP)
|
|
|
|
# CONFIG_SITE files contain other build configuration settings
|
|
include $(TOP)/configure/CONFIG_SITE
|
|
-include $(TOP)/configure/CONFIG_SITE.$(EPICS_HOST_ARCH)
|
|
-include $(TOP)/configure/CONFIG_SITE.$(EPICS_HOST_ARCH).Common
|
|
ifdef T_A
|
|
-include $(TOP)/configure/CONFIG_SITE.Common.$(T_A)
|
|
-include $(TOP)/configure/CONFIG_SITE.$(EPICS_HOST_ARCH).$(T_A)
|
|
endif
|
|
|