summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-07-03 20:16:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-07-03 20:16:01 +0000
commit2984cf1bc7f5f4174c069f72826f0f304966ac3a (patch)
treed7aef0653a1a310f697bd8df8789f349ae8b0aae
parent2002-07-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-2984cf1bc7f5f4174c069f72826f0f304966ac3a.tar.bz2
2002-07-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: explicitly create $(ARCH) when building $(LIB). Add bsplib_DATA = $(LIB).
-rw-r--r--c/src/wrapup/ChangeLog5
-rw-r--r--c/src/wrapup/Makefile.am4
2 files changed, 9 insertions, 0 deletions
diff --git a/c/src/wrapup/ChangeLog b/c/src/wrapup/ChangeLog
index 53b4916e69..8922eaade9 100644
--- a/c/src/wrapup/ChangeLog
+++ b/c/src/wrapup/ChangeLog
@@ -1,3 +1,8 @@
+2002-07-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * Makefile.am: explicitly create $(ARCH) when building $(LIB).
+ Add bsplib_DATA = $(LIB).
+
2002-06-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Pickup libbsp.a from build directory.
diff --git a/c/src/wrapup/Makefile.am b/c/src/wrapup/Makefile.am
index d0f4a97b08..edc5ce81fa 100644
--- a/c/src/wrapup/Makefile.am
+++ b/c/src/wrapup/Makefile.am
@@ -39,6 +39,7 @@ all-local: $(ARCH) $(TMPINSTALL_FILES)
$(LIB): $(SRCS)
rm -f $@
rm -rf $(ARCH)/*
+ test -d $(ARCH) || mkdir $(ARCH)
for f in $(SRCS); do \
case $$f in \
*.o | *.rel) \
@@ -66,4 +67,7 @@ $(LIB): $(SRCS)
rm -f $(ARCH)/*
$(RANLIB) $@
+bsplibdir = $(libdir)/@RTEMS_BSP@/lib
+bsplib_DATA = $(LIB)
+
include $(top_srcdir)/../../../automake/local.am