source: rtems/testsuites/mptests/configure.ac @ 3d5d192

4.115
Last change on this file since 3d5d192 was 027e40d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/22/11 at 14:56:36

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

  • configure.ac: Add AC_CONFIG_HEADER(config.h).
  • Property mode set to 100644
File size: 1.5 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-mptests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
7AC_CONFIG_SRCDIR([mp01])
8AC_CONFIG_HEADER([config.h])
9RTEMS_TOP([../..],[..])
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE([no-define foreign 1.11.1])
14AM_MAINTAINER_MODE
15
16
17RTEMS_ENV_RTEMSBSP
18
19RTEMS_PROJECT_ROOT
20
21RTEMS_PROG_CC_FOR_TARGET
22
23RTEMS_CANONICALIZE_TOOLS
24
25RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
26
27RTEMS_CHECK_CPUOPTS([RTEMS_MULTIPROCESSING])
28
29AM_CONDITIONAL(HAS_MP,test "$rtems_cv_RTEMS_MULTIPROCESSING" = "yes")
30
31MAX_LONG_TEST_DURATION=${MAX_LONG_TEST_DURATION-100}
32AC_ARG_VAR([MAX_LONG_TEST_DURATION],
33[The longest length of time a "long running" test should run])
34
35# Explicitly list all Makefiles here
36AC_CONFIG_FILES([Makefile
37mp01/Makefile
38mp01/node1/Makefile
39mp01/node2/Makefile
40mp02/Makefile
41mp02/node1/Makefile
42mp02/node2/Makefile
43mp03/Makefile
44mp03/node1/Makefile
45mp03/node2/Makefile
46mp04/Makefile
47mp04/node1/Makefile
48mp04/node2/Makefile
49mp05/Makefile
50mp05/node1/Makefile
51mp05/node2/Makefile
52mp06/Makefile
53mp06/node1/Makefile
54mp06/node2/Makefile
55mp07/Makefile
56mp07/node1/Makefile
57mp07/node2/Makefile
58mp08/Makefile
59mp08/node1/Makefile
60mp08/node2/Makefile
61mp09/Makefile
62mp09/node1/Makefile
63mp09/node2/Makefile
64mp10/Makefile
65mp10/node1/Makefile
66mp10/node2/Makefile
67mp11/Makefile
68mp11/node1/Makefile
69mp11/node2/Makefile
70mp12/Makefile
71mp12/node1/Makefile
72mp12/node2/Makefile
73mp13/Makefile
74mp13/node1/Makefile
75mp13/node2/Makefile
76mp14/Makefile
77mp14/node1/Makefile
78mp14/node2/Makefile
79])
80AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.