From a2967717fe7564ef3b3585112b7abad90454dfde Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 31 Oct 2000 21:12:59 +0000 Subject: 2000-10-30 Ralf Corsepius * ChangeLog: New file. * Makefile.am: Switch to GNU-canonicalized autoconf macros. * configure.in: New file. * .cvsignore: Add aclocal.m4, configure. --- c/src/wrapup/.cvsignore | 2 ++ c/src/wrapup/ChangeLog | 6 ++++++ c/src/wrapup/Makefile.am | 7 ++++--- c/src/wrapup/configure.in | 41 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 3 deletions(-) create mode 100644 c/src/wrapup/ChangeLog create mode 100644 c/src/wrapup/configure.in 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 + + * 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 +) -- cgit v1.2.3