26 lines
603 B
Plaintext
26 lines
603 B
Plaintext
# CONFIG
|
|
|
|
RULES = $(EPICS_BASE)
|
|
|
|
include $(TOP)/configure/RELEASE
|
|
-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 for definition in base
|
|
INSTALL_LOCATION = $(TOP)
|
|
include $(TOP)/configure/CONFIG_SITE
|
|
-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
|
|
|