source: rtems/testsuites/libtests/configure.ac @ 027e40d

4.115
Last change on this file since 027e40d 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.8 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)
31
32AC_PROG_LN_S
33AC_PATH_PROG([PAX],[pax])
34
35AC_CHECK_HEADERS([complex.h])
36
37AM_CONDITIONAL(TARTESTS,test "$as_ln_s" = "ln -s" && test -n "$PAX")
38
39AM_CONDITIONAL(HAS_CXX,test "$rtems_cv_HAS_CPLUSPLUS" = "yes")
40AM_CONDITIONAL([HAS_COMPLEX],[test "$ac_cv_header_complex_h" = yes])
41
42# Explicitly list all Makefiles here
43AC_CONFIG_FILES([Makefile
44block01/Makefile
45block02/Makefile
46block03/Makefile
47block04/Makefile
48block05/Makefile
49block06/Makefile
50block07/Makefile
51block08/Makefile
52block09/Makefile
53block10/Makefile
54bspcmdline01/Makefile
55cpuuse/Makefile
56devfs01/Makefile
57devfs02/Makefile
58devfs03/Makefile
59devfs04/Makefile
60deviceio01/Makefile
61devnullfatal01/Makefile
62dumpbuf01/Makefile
63gxx01/Makefile
64heapwalk/Makefile
65malloctest/Makefile
66malloc02/Makefile
67malloc03/Makefile
68malloc04/Makefile
69malloc05/Makefile
70monitor/Makefile
71monitor02/Makefile
72putenvtest/Makefile
73rtems++/Makefile
74rtmonuse/Makefile
75stackchk/Makefile
76stackchk01/Makefile
77stringto01/Makefile
78tar01/Makefile
79tar02/Makefile
80tar03/Makefile
81termios/Makefile
82termios01/Makefile
83termios02/Makefile
84termios03/Makefile
85termios04/Makefile
86termios05/Makefile
87termios06/Makefile
88termios07/Makefile
89termios08/Makefile
90tztest/Makefile
91POSIX/Makefile
92math/Makefile
93mathf/Makefile
94mathl/Makefile
95complex/Makefile
96])
97AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.