source: rtems/c/src/tests/configure.ac @ 5ee5c331

Last change on this file since 5ee5c331 was b18646c9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/06/03 at 10:45:24

2003-03-06 Ralf Corsepius <corsepiu@…>

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