source: rtems/c/src/ada-tests/configure.ac @ ba3e1a4f

4.104.114.95
Last change on this file since ba3e1a4f was ba3e1a4f, checked in by Glenn Humphrey <glenn.humphrey@…>, on 10/10/07 at 20:58:48

2007-10-10 Glenn Humphrey <glenn.humphrey@…>

  • configure.ac, samples/base_sp/base_sp.scn, samples/base_sp/config.h, samples/base_sp/sptest.adb, samples/hello/config.h, samples/ticker/config.h, samples/ticker/ticker.scn, sptests/Makefile.am, sptests/sp01/sp01.scn, sptests/sp02/config.h, sptests/sp02/sp02.scn, sptests/sp03/config.h, sptests/sp03/sp03.scn, sptests/sp04/sp04.scn, sptests/sp04/sptest.adb, sptests/sp05/config.h, sptests/sp05/sp05.scn, sptests/sp06/config.h, sptests/sp07/config.h, sptests/sp07/sp07.scn, sptests/sp07/sptest.adb, sptests/sp07/sptest.ads, sptests/sp08/config.h, sptests/sp08/sp08.scn, sptests/sp09/Makefile.am, sptests/sp09/config.h, sptests/sp09/sp09.scn, sptests/sp09/sptest.adb, sptests/sp09/sptest.ads, sptests/sp11/config.h, sptests/sp11/sp11.scn, sptests/sp12/config.h, sptests/sp12/sp12.scn, sptests/sp13/config.h, sptests/sp13/sp13.scn, sptests/sp13/sptest.adb, sptests/sp14/config.h, sptests/sp14/sp14.scn, sptests/sp15/config.h, sptests/sp15/sp15.scn, sptests/sp16/config.h, sptests/sp16/sp16.scn, sptests/sp16/sptest.adb, sptests/sp17/config.h, sptests/sp19/config.h, sptests/sp19/sp19.scn, sptests/sp20/config.h, sptests/sp20/sp20.scn, sptests/sp22/config.h, sptests/sp22/sp22.scn, sptests/sp23/config.h, sptests/sp23/sp23.scn, sptests/sp24/config.h, sptests/sp24/sp24.scn, sptests/sp25/config.h, sptests/sp25/sp25.scn, support/init.c, support/test_support.adb, support/test_support.ads, tmtests/tm09/config.h, tmtests/tm20/tmtest.adb, tmtests/tmoverhd/dummy_rtems.adb, tmtests/tmoverhd/dummy_rtems.ads, tmtests/tmoverhd/tmtest.adb, tmtests/tmoverhd/tmtest.ads: Updated tests so that they would all compile and run without errors. Some tests that are no longer valid using the current binding were removed. Also updated the .scn files to reflect the current test output.
  • sptests/sp21/.cvsignore, sptests/sp21/Makefile.am, sptests/sp21/config.h, sptests/sp21/sp21.adb, sptests/sp21/sp21.scn, sptests/sp21/sptest.adb, sptests/sp21/sptest.ads, sptests/spsize/.cvsignore, sptests/spsize/Makefile.am, sptests/spsize/spsize.adb, sptests/spsize/sptest.adb, sptests/spsize/sptest.ads: Removed.
  • Property mode set to 100644
File size: 3.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.59)
6AC_INIT([rtems-ada-tests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
7AC_CONFIG_SRCDIR([support])
8RTEMS_TOP([../../..],[])
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define foreign 1.9])
13AM_MAINTAINER_MODE
14
15AC_CHECK_PROGS([M4],[gm4 m4])
16RTEMS_PROG_GNAT
17RTEMS_CANONICALIZE_TOOLS
18
19RTEMS_ENV_RTEMSBSP
20RTEMS_PROJECT_ROOT
21
22RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
23RTEMS_CHECK_CPUOPTS([RTEMS_MULTIPROCESSING])
24
25AS_IF([test x"$HAVE_GNAT" = x"no"],[
26  AC_MSG_ERROR([No acceptable GNATMAKE found.])
27])
28
29AM_CONDITIONAL(HAS_MP,[test "$rtems_cv_RTEMS_MULTIPROCESSING" = yes])
30
31RTEMS_CHECK_TOOL([GNATPREP],[gnatprep],[])
32
33# FIXME: Enable building the examples which are known to be broken
34AM_CONDITIONAL([EXPADA],
35  [test x"$enable_expada" = xyes && test x"$HAVE_GNAT" = xyes])
36
37RTEMS_PROJECT_ROOT
38
39AC_SUBST([rtems_ada_testsdir],["\$(libdir)/rtems-][RTEMS_API][/ada-tests"])
40
41# Explicitly list all Makefiles here
42AC_CONFIG_FILES([Makefile])
43
44AC_CONFIG_FILES([support/Makefile])
45
46AC_CONFIG_FILES([
47samples/Makefile
48samples/base_sp/Makefile
49samples/hello/Makefile
50samples/ticker/Makefile
51samples/base_mp/Makefile
52samples/base_mp/node1/Makefile
53samples/base_mp/node2/Makefile
54])
55
56AC_CONFIG_FILES([
57sptests/Makefile
58sptests/sp01/Makefile
59sptests/sp02/Makefile
60sptests/sp03/Makefile
61sptests/sp04/Makefile
62sptests/sp05/Makefile
63sptests/sp06/Makefile
64sptests/sp07/Makefile
65sptests/sp08/Makefile
66sptests/sp09/Makefile
67sptests/sp11/Makefile
68sptests/sp12/Makefile
69sptests/sp13/Makefile
70sptests/sp14/Makefile
71sptests/sp15/Makefile
72sptests/sp16/Makefile
73sptests/sp17/Makefile
74sptests/sp19/Makefile
75sptests/sp20/Makefile
76sptests/sp22/Makefile
77sptests/sp23/Makefile
78sptests/sp24/Makefile
79sptests/sp25/Makefile
80])
81
82AC_CONFIG_FILES([
83tmtests/Makefile
84tmtests/tm01/Makefile
85tmtests/tm02/Makefile
86tmtests/tm03/Makefile
87tmtests/tm04/Makefile
88tmtests/tm05/Makefile
89tmtests/tm06/Makefile
90tmtests/tm07/Makefile
91tmtests/tm08/Makefile
92tmtests/tm09/Makefile
93tmtests/tm10/Makefile
94tmtests/tm11/Makefile
95tmtests/tm12/Makefile
96tmtests/tm13/Makefile
97tmtests/tm14/Makefile
98tmtests/tm15/Makefile
99tmtests/tm16/Makefile
100tmtests/tm17/Makefile
101tmtests/tm18/Makefile
102tmtests/tm19/Makefile
103tmtests/tm20/Makefile
104tmtests/tm21/Makefile
105tmtests/tm22/Makefile
106tmtests/tm23/Makefile
107tmtests/tm24/Makefile
108tmtests/tm25/Makefile
109tmtests/tm28/Makefile
110tmtests/tm29/Makefile
111tmtests/tmck/Makefile
112tmtests/tmoverhd/Makefile
113])
114
115AC_CONFIG_FILES([
116mptests/Makefile
117mptests/mp01/Makefile
118mptests/mp01/node1/Makefile
119mptests/mp01/node2/Makefile
120mptests/mp02/Makefile
121mptests/mp02/node1/Makefile
122mptests/mp02/node2/Makefile
123mptests/mp03/Makefile
124mptests/mp03/node1/Makefile
125mptests/mp03/node2/Makefile
126mptests/mp04/Makefile
127mptests/mp04/node1/Makefile
128mptests/mp04/node2/Makefile
129mptests/mp05/Makefile
130mptests/mp05/node1/Makefile
131mptests/mp05/node2/Makefile
132mptests/mp06/Makefile
133mptests/mp06/node1/Makefile
134mptests/mp06/node2/Makefile
135mptests/mp07/Makefile
136mptests/mp07/node1/Makefile
137mptests/mp07/node2/Makefile
138mptests/mp08/Makefile
139mptests/mp08/node1/Makefile
140mptests/mp08/node2/Makefile
141mptests/mp09/Makefile
142mptests/mp09/node1/Makefile
143mptests/mp09/node2/Makefile
144mptests/mp10/Makefile
145mptests/mp10/node1/Makefile
146mptests/mp10/node2/Makefile
147mptests/mp11/Makefile
148mptests/mp11/node1/Makefile
149mptests/mp11/node2/Makefile
150mptests/mp12/Makefile
151mptests/mp12/node1/Makefile
152mptests/mp12/node2/Makefile
153mptests/mp13/Makefile
154mptests/mp13/node1/Makefile
155mptests/mp13/node2/Makefile
156mptests/mp14/Makefile
157mptests/mp14/node1/Makefile
158mptests/mp14/node2/Makefile
159])
160
161AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.