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

Last change on this file since 3605c4e was 8f51fa52, checked in by Joel Sherrill <joel.sherrill@…>, on 07/18/03 at 14:22:14

2003-07-18 Joel Sherrill <joel@…>

PR 426/ada

  • configure.ac, samples/Makefile.am: Remove base_mp from 4.6 branch.
  • samples/base_mp/.cvsignore, samples/base_mp/Makefile.am, samples/base_mp/config.h, samples/base_mp/mptest.adb, samples/base_mp/mptest.ads, samples/base_mp/node1/.cvsignore, samples/base_mp/node1/Makefile.am, samples/base_mp/node1/base_mp.scn, samples/base_mp/node2/.cvsignore, samples/base_mp/node2/Makefile.am, samples/base_mp/node2/base_mp.scn: Removed.
  • Property mode set to 100644
File size: 2.3 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-ada-tests],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([support])
8RTEMS_TOP(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11RTEMS_CANONICAL_HOST
12
13AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
14AM_MAINTAINER_MODE
15
16AC_CHECK_PROGS([M4],[gm4 m4])
17RTEMS_PROG_GNAT
18RTEMS_CANONICALIZE_TOOLS
19
20RTEMS_ENABLE_MULTILIB
21RTEMS_ENABLE_MULTIPROCESSING
22RTEMS_ENV_RTEMSBSP
23RTEMS_CHECK_CPU
24RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
25RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
26
27AS_IF([test x"$HAVE_GNAT" = x"no"],[
28  AC_MSG_ERROR([No acceptable GNATMAKE found.])
29])
30
31AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
32
33RTEMS_CHECK_TOOL([GNATPREP],[gnatprep],[])
34
35# FIXME: Enable building the examples which are known to be broken
36AM_CONDITIONAL([EXPADA],
37  [test x"$enable_expada" = x"yes" && test x"$HAVE_GNAT" = x"yes"])
38
39RTEMS_PROJECT_ROOT
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
51])
52
53AC_CONFIG_FILES([
54sptests/Makefile
55sptests/sp01/Makefile
56sptests/sp02/Makefile
57sptests/sp03/Makefile
58sptests/sp04/Makefile
59sptests/sp05/Makefile
60sptests/sp06/Makefile
61sptests/sp07/Makefile
62sptests/sp08/Makefile
63sptests/sp09/Makefile
64sptests/sp11/Makefile
65sptests/sp12/Makefile
66sptests/sp13/Makefile
67sptests/sp14/Makefile
68sptests/sp15/Makefile
69sptests/sp16/Makefile
70sptests/sp17/Makefile
71sptests/sp19/Makefile
72sptests/sp20/Makefile
73sptests/sp21/Makefile
74sptests/sp22/Makefile
75sptests/sp23/Makefile
76sptests/sp24/Makefile
77sptests/sp25/Makefile
78sptests/spsize/Makefile
79])
80
81AC_CONFIG_FILES([
82tmtests/Makefile
83tmtests/tm01/Makefile
84tmtests/tm02/Makefile
85tmtests/tm03/Makefile
86tmtests/tm04/Makefile
87tmtests/tm05/Makefile
88tmtests/tm06/Makefile
89tmtests/tm07/Makefile
90tmtests/tm08/Makefile
91tmtests/tm09/Makefile
92tmtests/tm10/Makefile
93tmtests/tm11/Makefile
94tmtests/tm12/Makefile
95tmtests/tm13/Makefile
96tmtests/tm14/Makefile
97tmtests/tm15/Makefile
98tmtests/tm16/Makefile
99tmtests/tm17/Makefile
100tmtests/tm18/Makefile
101tmtests/tm19/Makefile
102tmtests/tm20/Makefile
103tmtests/tm21/Makefile
104tmtests/tm22/Makefile
105tmtests/tm23/Makefile
106tmtests/tm24/Makefile
107tmtests/tm25/Makefile
108tmtests/tm28/Makefile
109tmtests/tm29/Makefile
110tmtests/tmck/Makefile
111tmtests/tmoverhd/Makefile
112])
113
114AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.