summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-01-05 06:14:08 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-01-05 06:14:08 +0000
commit641194760114279c1665f9a6b214b452236eaa83 (patch)
tree47f9fcbc0eebaef75c305eac32bbc579f5810fa1 /c/src/lib/libbsp/unix
parent2003-12-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-641194760114279c1665f9a6b214b452236eaa83.tar.bz2
2004-01-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Eliminate $(LIB). Use noinst_DATA to trigger building libbsp.a.
Diffstat (limited to 'c/src/lib/libbsp/unix')
-rw-r--r--c/src/lib/libbsp/unix/posix/ChangeLog5
-rw-r--r--c/src/lib/libbsp/unix/posix/wrapup/Makefile.am5
2 files changed, 7 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/unix/posix/ChangeLog b/c/src/lib/libbsp/unix/posix/ChangeLog
index c8bde60f42..2281548487 100644
--- a/c/src/lib/libbsp/unix/posix/ChangeLog
+++ b/c/src/lib/libbsp/unix/posix/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * wrapup/Makefile.am: Eliminate $(LIB).
+ Use noinst_DATA to trigger building libbsp.a.
+
2003-12-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Remove GENERIC_FILES.
diff --git a/c/src/lib/libbsp/unix/posix/wrapup/Makefile.am b/c/src/lib/libbsp/unix/posix/wrapup/Makefile.am
index c32247448d..93407db483 100644
--- a/c/src/lib/libbsp/unix/posix/wrapup/Makefile.am
+++ b/c/src/lib/libbsp/unix/posix/wrapup/Makefile.am
@@ -12,11 +12,10 @@ BSP_FILES = startup clock console timer $(BSP_MP_O_FILES)
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = $(foreach piece, $(BSP_FILES), ../$(piece)/$(ARCH)/*.$(OBJEXT))
-LIB = $(ARCH)/libbsp.a
-$(LIB): $(OBJS)
+$(ARCH)/libbsp.a: $(OBJS)
$(make-library)
-all-local: $(LIB)
+noinst_DATA = $(ARCH)/libbsp.a
include $(top_srcdir)/../../../../automake/local.am