source: rtems/testsuites/configure.ac @ bd894e54

4.104.115
Last change on this file since bd894e54 was fcb0cd46, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/06 at 06:06:55

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

  • configure.ac: New BUG-REPORT address.
  • 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.60)
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.10])
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)
39  if test "$rtems_cv_RTEMS_MULTIPROCESSING" = "yes"; then
40    AC_CONFIG_SUBDIRS(mptests)
41  fi
42  if test "$rtems_cv_RTEMS_POSIX_API" = "yes"; then
43    AC_CONFIG_SUBDIRS(psxtests)
44  fi
45  if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
46    AC_CONFIG_SUBDIRS(itrontests)
47  fi
48  # Now do performance tests
49  AC_CONFIG_SUBDIRS(tmtests)
50  if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
51    AC_CONFIG_SUBDIRS(tmitrontests)
52  fi
53fi
54
55# Explicitly list all Makefiles here
56AC_CONFIG_FILES([Makefile])
57AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.