source: rtems/c/src/wrapup/configure.in @ df25c998

4.104.114.84.95
Last change on this file since df25c998 was a296771, checked in by Joel Sherrill <joel.sherrill@…>, on 10/31/00 at 21:12:59

2000-10-30 Ralf Corsepius <corsepiu@…>

  • ChangeLog?: New file.
  • Makefile.am: Switch to GNU-canonicalized autoconf macros.
  • configure.in: New file.
  • .cvsignore: Add aclocal.m4, configure.
  • Property mode set to 100644
File size: 827 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(../exec)
7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_ENABLE_NETWORKING
11RTEMS_ENABLE_RDBG
12
13RTEMS_CANONICAL_TARGET_CPU
14RTEMS_CANONICAL_HOST
15
16AM_INIT_AUTOMAKE(rtems-c-src-wrapup,$RTEMS_VERSION,no)
17AM_MAINTAINER_MODE
18
19RTEMS_ENABLE_MULTILIB
20RTEMS_ENV_RTEMSBSP
21RTEMS_CHECK_CPU
22RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
23
24RTEMS_CHECK_NETWORKING(RTEMS_BSP)
25if test "$HAS_NETWORKING" = "yes"; then
26  if test "$RTEMS_HAS_RDBG" = "yes"; then
27    RTEMS_CHECK_RDBG(RTEMS_BSP)
28  fi
29fi
30
31AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes" )
32AM_CONDITIONAL(HAS_RDBG, test "$HAS_RDBG" = "yes" )
33
34RTEMS_PROJECT_ROOT
35RTEMS_PROG_CC_FOR_TARGET
36RTEMS_CANONICALIZE_TOOLS
37
38# Explicitly list all Makefiles here
39AC_OUTPUT(
40Makefile
41)
Note: See TracBrowser for help on using the repository browser.