source: rtems/c/src/wrapup/configure.ac @ c672d97

4.104.114.84.95
Last change on this file since c672d97 was c672d97, checked in by Joel Sherrill <joel.sherrill@…>, on 01/04/02 at 17:53:48

2001-12-22 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove references to POSIX, ITRON, MULTILIB.
  • Makefile.ac: Remove librtems, libposix, libitron. Build librtemsbsp instead of librtemsall.
  • Property mode set to 100644
File size: 924 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT
7AC_CONFIG_SRCDIR([../exec])
8RTEMS_TOP(../../..)
9AC_CONFIG_AUX_DIR(../../..)
10
11RTEMS_ENABLE_NETWORKING
12RTEMS_ENABLE_RDBG
13
14RTEMS_CANONICAL_TARGET_CPU
15RTEMS_CANONICAL_HOST
16
17AM_INIT_AUTOMAKE(rtems-c-src-wrapup,$RTEMS_VERSION,no)
18AM_MAINTAINER_MODE
19
20RTEMS_ENABLE_MULTILIB
21RTEMS_ENV_RTEMSBSP
22RTEMS_CHECK_CPU
23RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
24
25RTEMS_CHECK_NETWORKING(RTEMS_BSP)
26if test "$HAS_NETWORKING" = "yes"; then
27  if test "$RTEMS_HAS_RDBG" = "yes"; then
28    RTEMS_CHECK_RDBG(RTEMS_BSP)
29  fi
30fi
31
32AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes" )
33AM_CONDITIONAL(HAS_RDBG, test "$HAS_RDBG" = "yes" )
34
35RTEMS_PROJECT_ROOT
36RTEMS_PROG_CC_FOR_TARGET
37RTEMS_CANONICALIZE_TOOLS
38
39AM_CONDITIONAL([MULTILIB],[test x"${enable_multilib}" = x"yes"])
40
41# Explicitly list all Makefiles here
42AC_CONFIG_FILES([Makefile])
43AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.