summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-10-31 21:12:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-10-31 21:12:59 +0000
commita2967717fe7564ef3b3585112b7abad90454dfde (patch)
treee300d4fc1107391c2cf199b996fe6f149a0eff53
parent2000-10-30 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-a2967717fe7564ef3b3585112b7abad90454dfde.tar.bz2
2000-10-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* ChangeLog: New file. * Makefile.am: Switch to GNU-canonicalized autoconf macros. * configure.in: New file. * .cvsignore: Add aclocal.m4, configure.
Diffstat (limited to '')
-rw-r--r--c/src/wrapup/.cvsignore2
-rw-r--r--c/src/wrapup/ChangeLog6
-rw-r--r--c/src/wrapup/Makefile.am7
-rw-r--r--c/src/wrapup/configure.in41
4 files changed, 53 insertions, 3 deletions
diff --git a/c/src/wrapup/.cvsignore b/c/src/wrapup/.cvsignore
index 282522db03..bb0f41a921 100644
--- a/c/src/wrapup/.cvsignore
+++ b/c/src/wrapup/.cvsignore
@@ -1,2 +1,4 @@
+aclocal.m4
+configure
Makefile
Makefile.in
diff --git a/c/src/wrapup/ChangeLog b/c/src/wrapup/ChangeLog
new file mode 100644
index 0000000000..f2a6d0e23b
--- /dev/null
+++ b/c/src/wrapup/ChangeLog
@@ -0,0 +1,6 @@
+2000-10-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * ChangeLog: New file.
+ * Makefile.am: Switch to GNU-canonicalized autoconf macros.
+ * configure.in: New file.
+ * .cvsignore: Add aclocal.m4, configure.
diff --git a/c/src/wrapup/Makefile.am b/c/src/wrapup/Makefile.am
index ab1f6d88f5..de2aa13119 100644
--- a/c/src/wrapup/Makefile.am
+++ b/c/src/wrapup/Makefile.am
@@ -5,10 +5,11 @@
##
AUTOMAKE_OPTIONS = foreign 1.4
+ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/macros
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../../automake/compile.am
-include $(top_srcdir)/../../automake/lib.am
+include $(top_srcdir)/../../../automake/compile.am
+include $(top_srcdir)/../../../automake/lib.am
LIB = $(PROJECT_RELEASE)/lib/librtemsall${LIB_VARIANT}.a
@@ -70,4 +71,4 @@ $(LIB): $(SRCS)
rm -f $(ARCH)/*
$(RANLIB) $@
-include $(top_srcdir)/../../automake/local.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/wrapup/configure.in b/c/src/wrapup/configure.in
new file mode 100644
index 0000000000..10b2765308
--- /dev/null
+++ b/c/src/wrapup/configure.in
@@ -0,0 +1,41 @@
+dnl Process this file with autoconf to produce a configure script.
+dnl
+dnl $Id$
+
+AC_PREREQ(2.13)
+AC_INIT(../exec)
+RTEMS_TOP(../../..)
+AC_CONFIG_AUX_DIR(../../..)
+
+RTEMS_ENABLE_NETWORKING
+RTEMS_ENABLE_RDBG
+
+RTEMS_CANONICAL_TARGET_CPU
+RTEMS_CANONICAL_HOST
+
+AM_INIT_AUTOMAKE(rtems-c-src-wrapup,$RTEMS_VERSION,no)
+AM_MAINTAINER_MODE
+
+RTEMS_ENABLE_MULTILIB
+RTEMS_ENV_RTEMSBSP
+RTEMS_CHECK_CPU
+RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
+
+RTEMS_CHECK_NETWORKING(RTEMS_BSP)
+if test "$HAS_NETWORKING" = "yes"; then
+ if test "$RTEMS_HAS_RDBG" = "yes"; then
+ RTEMS_CHECK_RDBG(RTEMS_BSP)
+ fi
+fi
+
+AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes" )
+AM_CONDITIONAL(HAS_RDBG, test "$HAS_RDBG" = "yes" )
+
+RTEMS_PROJECT_ROOT
+RTEMS_PROG_CC_FOR_TARGET
+RTEMS_CANONICALIZE_TOOLS
+
+# Explicitly list all Makefiles here
+AC_OUTPUT(
+Makefile
+)