summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-05-17 18:32:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-05-17 18:32:38 +0000
commit909261295b15b636c2f03b11a5c764ffc8f0262b (patch)
tree56644aabb50711abb893ed4d25ea253ebec529fc /cpukit
parent2002-05-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-909261295b15b636c2f03b11a5c764ffc8f0262b.tar.bz2
2002-05-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add libcsupport. * wrapup/Makefile.am: Ditto.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/configure.ac2
-rw-r--r--cpukit/wrapup/Makefile.am4
3 files changed, 10 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 3afd87b41c..d29007f1a2 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2002-05-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * configure.ac: Add libcsupport.
+ * wrapup/Makefile.am: Ditto.
+
+2002-05-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* Makefile.am: Add preinstall-stamp.
2002-04-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index 5670073bef..0834122645 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -59,6 +59,8 @@ AS_IF([test x"$HAS_ITRON_API" = x"yes"],
)
RTEMS_CPU_SUBDIRS([score/cpu])
+AC_CONFIG_SUBDIRS([libcsupport])
+
RTEMS_DEFINE_POSIX_API
RTEMS_DEFINE_ITRON_API
RTEMS_DEFINE_MULTIPROCESSING
diff --git a/cpukit/wrapup/Makefile.am b/cpukit/wrapup/Makefile.am
index e8325dfc9a..b753a34256 100644
--- a/cpukit/wrapup/Makefile.am
+++ b/cpukit/wrapup/Makefile.am
@@ -23,8 +23,10 @@ if HAS_ITRON
ITRON_OBJS = $(wildcard ../itron/src/$(ARCH)/*.o)
endif
+LIBCSUPPORT_OBJS = $(wildcard ../libcsupport/src/$(ARCH)/*.o)
+
OBJS = $(CPU_OBJS) $(CORE_OBJS) $(RTEMS_OBJS) $(SAPI_OBJS) \
- $(POSIX_OBJS) $(ITRON_OBJS)
+ $(POSIX_OBJS) $(ITRON_OBJS) $(LIBCSUPPORT_OBJS)
$(LIB): ${OBJS}
$(make-library)