source: rtems/testsuites/mptests/configure.ac @ 95c1921

5
Last change on this file since 95c1921 was aa567bc1, checked in by Chris Johns <chrisj@…>, on 04/10/18 at 06:06:39

configure: Add subdir-objects to all automake flags.

This option silences warning with automake-1.16.1 allowing us to
upgrade to that version.

This change has been tested with automake-1.12.6 and automake-1.16.1.
It seems version 1.16.1 configures slower than 1.12.6 for the same
source and BSP. The newer versions is 6 second slower.

Close #3387.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-tests-mptests],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([mp01])
6AC_CONFIG_HEADER([config.h])
7RTEMS_TOP([../..],[..])
8RTEMS_SOURCE_TOP
9RTEMS_BUILD_TOP
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE([no-define foreign subdir-objects 1.12.2])
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# BSP Test configuration
36RTEMS_TEST_CHECK([mp01])
37RTEMS_TEST_CHECK([mp03])
38RTEMS_TEST_CHECK([mp04])
39RTEMS_TEST_CHECK([mp05])
40RTEMS_TEST_CHECK([mp06])
41RTEMS_TEST_CHECK([mp07])
42RTEMS_TEST_CHECK([mp08])
43RTEMS_TEST_CHECK([mp09])
44RTEMS_TEST_CHECK([mp10])
45RTEMS_TEST_CHECK([mp11])
46RTEMS_TEST_CHECK([mp12])
47RTEMS_TEST_CHECK([mp13])
48RTEMS_TEST_CHECK([mp14])
49
50AC_CONFIG_FILES([Makefile])
51AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.