summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-08-01 12:00:31 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-08-01 12:00:31 +0000
commitd66ca675cf953a7cd4d8bfd0cdfc1d760647a3a8 (patch)
tree279c35972f4fc512965a72552d41426ac94ab52d /cpukit
parent2002-08-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-d66ca675cf953a7cd4d8bfd0cdfc1d760647a3a8.tar.bz2
2002-08-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/Makefile.am: Add librtems.a.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/rtems/ChangeLog4
-rw-r--r--cpukit/rtems/src/Makefile.am7
2 files changed, 10 insertions, 1 deletions
diff --git a/cpukit/rtems/ChangeLog b/cpukit/rtems/ChangeLog
index 1940e640f2..fc5017efc2 100644
--- a/cpukit/rtems/ChangeLog
+++ b/cpukit/rtems/ChangeLog
@@ -1,3 +1,7 @@
+2002-08-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/Makefile.am: Add librtems.a.
+
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/Makefile.am: Use .$(OBJEXT) instead of .o.
diff --git a/cpukit/rtems/src/Makefile.am b/cpukit/rtems/src/Makefile.am
index bf726fc665..bac6015488 100644
--- a/cpukit/rtems/src/Makefile.am
+++ b/cpukit/rtems/src/Makefile.am
@@ -2,6 +2,7 @@
## $Id$
##
+LIB = $(ARCH)/librtems.a
include $(top_srcdir)/automake/multilib.am
include $(top_srcdir)/automake/compile.am
@@ -72,7 +73,11 @@ OBJS = $(C_O_FILES)
AM_CPPFLAGS += -D__RTEMS_INSIDE__
-all-local: ${ARCH} ${OBJS}
+all-local: ${ARCH} $(LIB)
+
+$(LIB): ${OBJS}
+ $(make-library)
+
EXTRA_DIST = $(STD_C_FILES) $(MP_C_FILES)