source: rtems/testsuites/configure.ac @ cea60077

4.10
Last change on this file since cea60077 was 53328c8f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/02/11 at 15:18:21

2011-02-02 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Require autoconf-2.68, automake-1.11.1.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ([2.68])
6AC_INIT([rtems-c-src-tests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
7AC_CONFIG_SRCDIR([PROBLEMS])
8RTEMS_TOP([..],[])
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define foreign 1.11.1])
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_TESTS
16RTEMS_ENABLE_CXX
17
18RTEMS_ENV_RTEMSBSP
19
20RTEMS_PROJECT_ROOT
21
22RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
23RTEMS_PROG_CC
24
25RTEMS_CHECK_CPUOPTS([RTEMS_POSIX_API])
26RTEMS_CHECK_CPUOPTS([RTEMS_ITRON_API])
27RTEMS_CHECK_CPUOPTS([RTEMS_MULTIPROCESSING])
28RTEMS_CHECK_CPUOPTS([RTEMS_NETWORKING])
29
30case $enable_tests in
31yes | samples )
32  AC_CONFIG_SUBDIRS(samples)
33  ;;
34esac
35
36if test "$enable_tests" = "yes"; then
37  # do functionality tests first, then performance tests
38  AC_CONFIG_SUBDIRS(libtests sptests psxtests)
39  if test "$rtems_cv_RTEMS_MULTIPROCESSING" = "yes"; then
40    AC_CONFIG_SUBDIRS(mptests)
41  fi
42  if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
43    AC_CONFIG_SUBDIRS(itrontests)
44  fi
45  # Now do performance tests
46  AC_CONFIG_SUBDIRS(tmtests)
47  if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
48    AC_CONFIG_SUBDIRS(tmitrontests)
49  fi
50fi
51
52# Explicitly list all Makefiles here
53AC_CONFIG_FILES([Makefile])
54AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.