source: rtems/c/src/tests/configure.ac @ afcd563

4.104.114.84.95
Last change on this file since afcd563 was cb9b2bfc, checked in by Joel Sherrill <joel.sherrill@…>, on 04/16/02 at 13:53:23

2002-04-14 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove ENABLE_GCC28.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT([rtems-c-src-tests],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([samples])
8RTEMS_TOP(../../..)
9AC_CONFIG_AUX_DIR(../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE([no-define foreign 1.6])
14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_POSIX
17RTEMS_ENABLE_ITRON
18RTEMS_ENABLE_NETWORKING
19RTEMS_ENABLE_CXX
20RTEMS_ENABLE_BARE
21RTEMS_ENABLE_TESTS
22
23RTEMS_ENV_RTEMSBSP
24RTEMS_CHECK_CPU
25RTEMS_CANONICAL_HOST
26
27RTEMS_PROJECT_ROOT
28
29RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
30RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
31RTEMS_CHECK_POSIX_API(RTEMS_BSP)
32RTEMS_CHECK_ITRON_API(RTEMS_BSP)
33
34AC_CONFIG_SUBDIRS(tools)
35AC_CONFIG_SUBDIRS(support)
36AC_CONFIG_SUBDIRS(samples)
37
38if test "$tests_enabled" = "yes"; then
39  # do functionality tests first, then performance tests
40  AC_CONFIG_SUBDIRS(libtests sptests)
41  if test "$HAS_MP" = "yes"; then
42    AC_CONFIG_SUBDIRS(mptests)
43  fi
44  if test "$HAS_POSIX_API" = "yes"; then
45    AC_CONFIG_SUBDIRS(psxtests)
46  fi
47  if test "$HAS_ITRON_API" = "yes"; then
48    AC_CONFIG_SUBDIRS(itrontests)
49  fi
50  # Now do performance tests
51  AC_CONFIG_SUBDIRS(tmtests)
52  if test "$HAS_ITRON_API" = "yes"; then
53    AC_CONFIG_SUBDIRS(tmitrontests)
54  fi
55fi
56
57AC_SUBST(BARE_CPU_CFLAGS)
58AC_SUBST(BARE_CPU_MODEL)
59
60# Explicitly list all Makefiles here
61AC_CONFIG_FILES([Makefile
62])
63AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.