summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/shsim/wrapup
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-12-20 17:25:24 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-12-20 17:25:24 +0000
commitb9f84f1f06c3cc29b00557f66a152f68d04028fe (patch)
tree29cbf124d6093e0ca91144546e92ac2f7b4f116d /c/src/lib/libbsp/sh/shsim/wrapup
parent2001-12-18 Eric Norum <eric.norum@usask.ca> (diff)
downloadrtems-b9f84f1f06c3cc29b00557f66a152f68d04028fe.tar.bz2
2001-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Apply RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ). * console/Makefile.am: C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o). * wrapup/Makefile.am: Add gdbsci, scitab to BSP_FILES, add CPU_FILES.
Diffstat (limited to 'c/src/lib/libbsp/sh/shsim/wrapup')
-rw-r--r--c/src/lib/libbsp/sh/shsim/wrapup/Makefile.am7
1 files changed, 4 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/sh/shsim/wrapup/Makefile.am b/c/src/lib/libbsp/sh/shsim/wrapup/Makefile.am
index 7a5744c97d..67d4beb592 100644
--- a/c/src/lib/libbsp/sh/shsim/wrapup/Makefile.am
+++ b/c/src/lib/libbsp/sh/shsim/wrapup/Makefile.am
@@ -4,9 +4,9 @@
AUTOMAKE_OPTIONS = foreign 1.4
-BSP_FILES = startup clock console timer
+BSP_FILES = startup clock console timer gdbsci scitab
-# CPU_PIECES = score
+CPU_PIECES = score
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../../automake/compile.am
@@ -14,7 +14,8 @@ include $(top_srcdir)/../../../../../../automake/lib.am
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
- $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(ARCH)/*.o) \
+ $(foreach piece, $(CPU_PIECES), \
+ ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(piece)/$(ARCH)/$(piece).rel) \
$(foreach piece, $(GENERIC_FILES), ../../../$(piece)/$(ARCH)/$(piece).rel)
LIB = $(ARCH)/libbsp.a