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/configure.in | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 c/src/wrapup/configure.in (limited to 'c/src/wrapup/configure.in') 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