source: rtems/testsuites/configure.ac @ cafefbf

4.115
Last change on this file since cafefbf was 8ee3775, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/02/11 at 15:01:43

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.0 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_MULTIPROCESSING])
27RTEMS_CHECK_CPUOPTS([RTEMS_NETWORKING])
28
29case $enable_tests in
30yes | samples )
31  AC_CONFIG_SUBDIRS(samples)
32  ;;
33esac
34
35if test "$enable_tests" = "yes"; then
36  # do functionality tests first, then performance tests
37  AC_CONFIG_SUBDIRS(libtests sptests psxtests)
38  if test "$rtems_cv_RTEMS_MULTIPROCESSING" = "yes"; then
39    AC_CONFIG_SUBDIRS(mptests)
40  fi
41  # Now do performance tests
42  AC_CONFIG_SUBDIRS(tmtests psxtmtests)
43fi
44
45# Explicitly list all Makefiles here
46AC_CONFIG_FILES([Makefile])
47AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.