source: rtems/testsuites/libtests/configure.ac @ e752630

4.115
Last change on this file since e752630 was e752630, checked in by Sebastian Huber <sebastian.huber@…>, on 04/10/12 at 09:19:39

rbheap: New files

In the Red-Black Tree Heap the administration data structures are not
contained in the managed memory area. This can be used for example in a
task stack allocator which protects the task stacks from access by other
tasks.

  • Property mode set to 100644
File size: 2.0 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-libtests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
7AC_CONFIG_SRCDIR([cpuuse])
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
16RTEMS_ENABLE_CXX
17
18RTEMS_ENV_RTEMSBSP
19RTEMS_CHECK_RTEMS_TEST_NO_PAUSE
20
21RTEMS_PROJECT_ROOT
22
23RTEMS_PROG_CC_FOR_TARGET
24
25RTEMS_PROG_CXX_FOR_TARGET
26
27RTEMS_CANONICALIZE_TOOLS
28
29RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
30RTEMS_CHECK_CXX(RTEMS_BSP)
31RTEMS_CHECK_CPUOPTS([RTEMS_NETWORKING])
32
33AC_PROG_LN_S
34AC_PATH_PROG([PAX],[pax])
35
36AC_CHECK_HEADERS([complex.h])
37
38AM_CONDITIONAL(TARTESTS,test "$as_ln_s" = "ln -s" && test -n "$PAX")
39
40AM_CONDITIONAL(HAS_CXX,test "$rtems_cv_HAS_CPLUSPLUS" = "yes")
41AM_CONDITIONAL([HAS_COMPLEX],[test "$ac_cv_header_complex_h" = yes])
42AM_CONDITIONAL(NETTESTS,test "$rtems_cv_RTEMS_NETWORKING" = "yes")
43
44# Explicitly list all Makefiles here
45AC_CONFIG_FILES([Makefile
46rbheap01/Makefile
47syscall01/Makefile
48flashdisk01/Makefile
49block01/Makefile
50block02/Makefile
51block03/Makefile
52block04/Makefile
53block05/Makefile
54block06/Makefile
55block07/Makefile
56block08/Makefile
57block09/Makefile
58block10/Makefile
59block11/Makefile
60bspcmdline01/Makefile
61cpuuse/Makefile
62devfs01/Makefile
63devfs02/Makefile
64devfs03/Makefile
65devfs04/Makefile
66deviceio01/Makefile
67devnullfatal01/Makefile
68dumpbuf01/Makefile
69ftp01/Makefile
70gxx01/Makefile
71heapwalk/Makefile
72malloctest/Makefile
73malloc02/Makefile
74malloc03/Makefile
75malloc04/Makefile
76malloc05/Makefile
77monitor/Makefile
78monitor02/Makefile
79mouse01/Makefile
80putenvtest/Makefile
81rtems++/Makefile
82rtmonuse/Makefile
83stackchk/Makefile
84stackchk01/Makefile
85stringto01/Makefile
86tar01/Makefile
87tar02/Makefile
88tar03/Makefile
89termios/Makefile
90termios01/Makefile
91termios02/Makefile
92termios03/Makefile
93termios04/Makefile
94termios05/Makefile
95termios06/Makefile
96termios07/Makefile
97termios08/Makefile
98tztest/Makefile
99POSIX/Makefile
100math/Makefile
101mathf/Makefile
102mathl/Makefile
103complex/Makefile
104])
105AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.