34 lines
807 B
Plaintext
34 lines
807 B
Plaintext
# $Id$
|
|
|
|
include $(TOP)/configure/RELEASE
|
|
-include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH)
|
|
|
|
CONFIG=$(EPICS_BASE)/configure
|
|
include $(CONFIG)/CONFIG
|
|
|
|
INSTALL_LOCATION = $(TOP)
|
|
ifdef INSTALL_LOCATION_EXTENSIONS
|
|
INSTALL_LOCATION = $(INSTALL_LOCATION_EXTENSIONS)
|
|
endif
|
|
|
|
# Site specific host architecture definitions
|
|
-include $(TOP)/configure/os/CONFIG_SITE.$(EPICS_HOST_ARCH).Common
|
|
|
|
ifdef T_A
|
|
|
|
# Site specific target architecture definitions
|
|
-include $(TOP)/configure/os/CONFIG_SITE.Common.$(T_A)
|
|
|
|
# Cross compile specific definitions
|
|
ifneq ($(EPICS_HOST_ARCH),$(T_A))
|
|
-include $(TOP)/configure/CONFIG.CrossCommon
|
|
endif
|
|
|
|
# Site specific host-target combination definitions
|
|
-include $(TOP)/configure/os/CONFIG_SITE.$(EPICS_HOST_ARCH).$(T_A)
|
|
|
|
-include $(TOP)/configure/O.$(T_A)/CONFIG_APP_INCLUDE
|
|
|
|
endif
|
|
|