summaryrefslogtreecommitdiffstats
path: root/c/src/make/Makefile.inc.in
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2019-07-17 22:19:04 +1000
committerChris Johns <chrisj@rtems.org>2019-07-19 17:50:05 +1000
commit270c5df5dbaf93c19e2f66a27f4bb73c7e625629 (patch)
tree50c493a2212276ab93948412f18feaf949f85cc2 /c/src/make/Makefile.inc.in
parentscore/interr: Fix comments. (diff)
downloadrtems-270c5df5dbaf93c19e2f66a27f4bb73c7e625629.tar.bz2
Makefile.inc: Add support for staged builds.
- Allow the RTEMS_ROOT to be conditionally supplied. This can be a staging area before being moved to the final install prefix location. - Update the default.cfg to use RTEMS_ROOT and to not rely on the exec_prefix so it's paths can be staged. - Fix and add the needed configure subs. Closes #3768
Diffstat (limited to 'c/src/make/Makefile.inc.in')
-rw-r--r--c/src/make/Makefile.inc.in13
1 files changed, 8 insertions, 5 deletions
diff --git a/c/src/make/Makefile.inc.in b/c/src/make/Makefile.inc.in
index bb37676987..d3df7a3b98 100644
--- a/c/src/make/Makefile.inc.in
+++ b/c/src/make/Makefile.inc.in
@@ -1,7 +1,13 @@
#
# BSP specific settings. To be included in application Makefiles
#
+# This support will be removed from RTEMS. Please consider other
+# ways to build applications.
+#
+
+RTEMS_API = @RTEMS_API@
+RTEMS_CPU = @RTEMS_CPU@
RTEMS_BSP = @RTEMS_BSP@
prefix = @prefix@
@@ -16,8 +22,6 @@ LD_FOR_TARGET = @LD@
SIZE_FOR_TARGET = @SIZE@
OBJCOPY_FOR_TARGET = @OBJCOPY@
-RTEMS_API = @RTEMS_API@
-
CC= $(CC_FOR_TARGET)
CXX= $(CXX_FOR_TARGET)
AS= $(AS_FOR_TARGET)
@@ -36,10 +40,10 @@ export AR
export SIZE
export OBJCOPY
-RTEMS_ROOT = $(prefix)
+RTEMS_ROOT ?= $(prefix)
PROJECT_ROOT = $(RTEMS_ROOT)
RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
-RTEMS_SHARE = $(RTEMS_ROOT)/share/rtems$(RTEMS_API)
+RTEMS_SHARE = $(RTEMS_ROOT)/share/rtems$(RTEMS_API)
RTEMS_USE_OWN_PDIR = no
RTEMS_HAS_POSIX_API = @RTEMS_HAS_POSIX_API@
@@ -49,4 +53,3 @@ RTEMS_HAS_CPLUSPLUS = @RTEMS_HAS_CPLUSPLUS@
export RTEMS_BSP
export RTEMS_CUSTOM
export PROJECT_ROOT
-