summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/ChangeLog5
-rw-r--r--c/src/exec/configure.ac2
-rw-r--r--c/src/exec/wrapup/Makefile.am4
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/configure.ac2
-rw-r--r--cpukit/wrapup/Makefile.am4
6 files changed, 20 insertions, 2 deletions
diff --git a/c/src/exec/ChangeLog b/c/src/exec/ChangeLog
index 3afd87b41c..d29007f1a2 100644
--- a/c/src/exec/ChangeLog
+++ b/c/src/exec/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/c/src/exec/configure.ac b/c/src/exec/configure.ac
index 5670073bef..0834122645 100644
--- a/c/src/exec/configure.ac
+++ b/c/src/exec/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/c/src/exec/wrapup/Makefile.am b/c/src/exec/wrapup/Makefile.am
index e8325dfc9a..b753a34256 100644
--- a/c/src/exec/wrapup/Makefile.am
+++ b/c/src/exec/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)
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)