source: rtems/scripts/configure.in @ d5704c6

4.104.114.84.95
Last change on this file since d5704c6 was d5704c6, checked in by Joel Sherrill <joel.sherrill@…>, on 11/04/99 at 13:18:23

Added first stab at mkgnatnewlib.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[43e7d103]1## $Id$
2
[10629f7]3AC_INIT(binutils)
[213c518]4AM_INIT_AUTOMAKE(scripts,19991025-0,no)
[43e7d103]5
[39537657]6# RTEMS_CHECK_VERSION(..)
[7063e223]7RTEMS_VERSION=GET_RTEMS_VERSION_XXX
[10629f7]8
[43e7d103]9test -f ./setup.cache || cp ${srcdir}/setup.def ./setup.cache
[10629f7]10. ./setup.cache
11
12# Some linux distributions use /usr/src/packages
13# redhat uses /usr/src/redhat
14# others might use /usr/src
15AC_MSG_CHECKING(for rpm SPECS directory)
16if test -d /usr/src/packages/SPECS;
17then
[36b6704e]18  RPM_SPECSdir=/usr/src/packages/SPECS;
[10629f7]19elif test -d /usr/src/redhat/SPECS;
20then
[36b6704e]21  RPM_SPECSdir=/usr/src/redhat/SPECS;
[10629f7]22elif test -d /usr/src/SPECS/;
23then
[36b6704e]24  RPM_SPECSdir=/usr/src/SPECS;
[10629f7]25fi
[43e7d103]26if test x"$RPM_SPECSdir" = x"" ; then
[10629f7]27AC_MSG_ERROR(not found)
28fi
29AC_MSG_RESULT($RPM_SPECSdir)
30AC_SUBST(RPM_SPECSdir)
31
32GCCNEWLIBVERS="gcc-${gcc_version}-newlib-${newlib_version}"
33AC_SUBST(GCCNEWLIBVERS)
34BINUTILSVERS="binutils-${binutils_version}"
35AC_SUBST(BINUTILSVERS)
36GDBVERS="gdb-${gdb_version}"
37AC_SUBST(GDBVERS)
[43e7d103]38BSPVERS="${RTEMS_VERSION}"
[7063e223]39AC_SUBST(RTEMS_VERSION)
[2f23359]40AC_SUBST(BSPVERS)
[10629f7]41
42AC_OUTPUT(
43Makefile
[431c35d]44buildall
[10629f7]45mkbinutilspec
46mkgccnewlibspec
[d5704c6]47mkgnatnewlibspec
[1805015]48mkgdbspec
[2f23359]49mkbspspec
[10629f7]50binutils/Makefile
51gccnewlib/Makefile
[d5704c6]52gnatnewlib/Makefile
[1805015]53gdb/Makefile
[431c35d]54rtems/Makefile
[10629f7]55)
Note: See TracBrowser for help on using the repository browser.