2001-10-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* configure.in: AC_PREREQ(2.52), Adapt CONFIG_SUBDIRS to
	autoconf-2.52.
This commit is contained in:
Joel Sherrill
2001-10-11 16:43:10 +00:00
parent cae8bc927a
commit 0be2f35867
2 changed files with 15 additions and 8 deletions

View File

@@ -1,3 +1,8 @@
2001-10-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: AC_PREREQ(2.52), Adapt CONFIG_SUBDIRS to
autoconf-2.52.
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.

View File

@@ -2,8 +2,9 @@ dnl Process this file with autoconf to produce a configure script.
dnl
dnl $Id$
AC_PREREQ(2.13)
AC_INIT(sh7032)
AC_PREREQ(2.52)
AC_INIT
AC_CONFIG_SRCDIR([sh7032])
RTEMS_TOP(../../../../..)
AC_CONFIG_AUX_DIR(../../../../..)
@@ -23,11 +24,12 @@ RTEMS_PROJECT_ROOT
RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
if test -d ${srcdir}/$RTEMS_CPU_MODEL; then
RTEMS_CPU_MODEL_SUBDIR="$RTEMS_CPU_MODEL"
fi
AC_CONFIG_SUBDIRS($RTEMS_CPU_MODEL_SUBDIR)
case "$RTEMS_CPU_MODEL" in
sh7032 ) AC_CONFIG_SUBDIRS([sh7032]);;
sh7045 ) AC_CONFIG_SUBDIRS([sh7045]);;
*) AC_MSG_ERROR([Invalid RTEMS_CPU_MODEL]);
esac
# Explicitly list all Makefiles here
AC_OUTPUT(
Makefile)
AC_CONFIG_FILES([Makefile])
AC_OUTPUT