source: rtems/testsuites/smptests/configure.ac @ fee154be

4.115
Last change on this file since fee154be was 79d03e3, checked in by Sebastian Huber <sebastian.huber@…>, on 08/28/13 at 12:52:43

smptests/smpatomic08: New test

  • Property mode set to 100644
File size: 1.4 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-tests-smptests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
5AC_CONFIG_SRCDIR([smp01])
6AC_CONFIG_HEADER([config.h])
7RTEMS_TOP([../..],[..])
8
9RTEMS_CANONICAL_TARGET_CPU
10
11AM_INIT_AUTOMAKE([no-define foreign 1.12.2])
12AM_MAINTAINER_MODE
13
14RTEMS_ENABLE_CXX
15
16RTEMS_ENV_RTEMSBSP
17
18RTEMS_PROJECT_ROOT
19
20RTEMS_PROG_CC_FOR_TARGET
21
22RTEMS_PROG_CXX_FOR_TARGET
23RTEMS_CANONICALIZE_TOOLS
24
25RTEMS_CHECK_CPUOPTS([RTEMS_ATOMIC])
26RTEMS_CHECK_CPUOPTS([RTEMS_POSIX_API])
27
28RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
29RTEMS_CHECK_CPUOPTS([RTEMS_MULTIPROCESSING])
30RTEMS_CHECK_CXX(RTEMS_BSP)
31RTEMS_CHECK_CPUOPTS([RTEMS_NETWORKING])
32RTEMS_CHECK_CPUOPTS([RTEMS_SMP])
33
34AM_CONDITIONAL(SMPTESTS,test "$rtems_cv_RTEMS_SMP" = "yes")
35
36AM_CONDITIONAL([ATOMIC],[test x"$rtems_cv_RTEMS_ATOMIC" = xyes])
37AM_CONDITIONAL([HAS_POSIX],[test x"${rtems_cv_RTEMS_POSIX_API}" = xyes])
38
39# Explicitly list all Makefiles here
40AC_CONFIG_FILES([Makefile
41smp01/Makefile
42smp02/Makefile
43smp03/Makefile
44smp05/Makefile
45smp06/Makefile
46smp07/Makefile
47smp08/Makefile
48smp09/Makefile
49smpatomic01/Makefile
50smpatomic02/Makefile
51smpatomic03/Makefile
52smpatomic04/Makefile
53smpatomic05/Makefile
54smpatomic06/Makefile
55smpatomic07/Makefile
56smpatomic08/Makefile
57smplock01/Makefile
58smpmigration01/Makefile
59smppsxsignal01/Makefile
60smpschedule01/Makefile
61smpsignal01/Makefile
62smpswitchextension01/Makefile
63smpunsupported01/Makefile
64])
65AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.