source: rtems/scripts-ada/configure.in @ 1bce637

4.104.114.84.95
Last change on this file since 1bce637 was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

  • Property mode set to 100644
File size: 1.1 KB
Line 
1## $Id$
2
3AC_INIT(binutils)
4AM_INIT_AUTOMAKE(rtems-scripts_ada,20000125-0,no)
5
6AC_EXEEXT
7
8test -f ./setup.cache || cp ${srcdir}/setup.def ./setup.cache
9. ./setup.cache
10
11# Some linux distributions use /usr/src/packages
12# redhat uses /usr/src/redhat
13# others might use /usr/src
14AC_MSG_CHECKING(for rpm SPECS directory)
15if test -d /usr/src/packages/SPECS;
16then
17  RPM_SPECSdir=/usr/src/packages/SPECS;
18elif test -d /usr/src/redhat/SPECS;
19then
20  RPM_SPECSdir=/usr/src/redhat/SPECS;
21elif test -d /usr/src/SPECS/;
22then
23  RPM_SPECSdir=/usr/src/SPECS;
24fi
25if test x"$RPM_SPECSdir" = x"" ; then
26AC_MSG_ERROR(not found)
27fi
28AC_MSG_RESULT($RPM_SPECSdir)
29AC_SUBST(RPM_SPECSdir)
30
31GNATNEWLIBVERS="gnat-${gnat_version}-newlib-${newlib_version}"
32AC_SUBST(GNATNEWLIBVERS)
33BINUTILSVERS="gnat-${gnat_version}-binutils-${binutils_version}"
34AC_SUBST(BINUTILSVERS)
35GDBVERS="gnat-${gnat_version}-gdb-${gdb_version}"
36AC_SUBST(GDBVERS)
37BSPVERS="${rtems_version}"
38AC_SUBST(RTEMS_VERSION)
39AC_SUBST(BSPVERS)
40
41AC_OUTPUT(
42Makefile
43buildall
44mkbinutilspec
45mkgnatnewlibspec
46mkgdbspec
47mkbspspec
48binutils/Makefile
49gnatnewlib/Makefile
50gdb/Makefile,,
51chmod 755 buildall
52)
Note: See TracBrowser for help on using the repository browser.