summaryrefslogtreecommitdiffstats
path: root/make/custom
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-05-22 12:30:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-05-22 12:30:19 +0000
commitcdf6fcbccb507157026da87546c129b90dea2a48 (patch)
tree7f0a39b5ce2d0683d4319b77722f8654d50adc26 /make/custom
parentRenamed bare BSP specific options to make the dependency obvious. (diff)
downloadrtems-cdf6fcbccb507157026da87546c129b90dea2a48.tar.bz2
Now uses BSP specific configure variables and compiles for i486 and m68k.
Diffstat (limited to '')
-rw-r--r--make/custom/bare.cfg9
1 files changed, 8 insertions, 1 deletions
diff --git a/make/custom/bare.cfg b/make/custom/bare.cfg
index 94ccbc7307..ce826ce7ba 100644
--- a/make/custom/bare.cfg
+++ b/make/custom/bare.cfg
@@ -9,7 +9,11 @@ RTEMS_BSP_FAMILY=bare
RTEMS_BSP=bare
-TARGET_ARCH=o-$(RTEMS_BSP_FAMILY)-$(RTEMS_CPU_MODEL)
+RTEMS_CPU_MODEL=$(BARE_CPU_MODEL)
+
+TARGET_ARCH=o-$(RTEMS_BSP_FAMILY)-$(BARE_CPU_MODEL)
+
+CPU_CFLAGS=$(BARE_CPU_CFLAGS)
include $(RTEMS_ROOT)/make/custom/default.cfg
@@ -38,6 +42,9 @@ define make-target-options
@echo "/* #define RTEMS_DEBUG 1 */" >>$@
endef
+# this target has no start file
+START_BASE=
+
# The following are definitions of make-exe which will work using ld as
# is currently required. It is expected that as of gcc 2.8, the end user
# will be able to override parts of the compilers specs and link using gcc.