From a3ac20f7bba5237b69ee9521871767f8c007b290 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 13 Sep 2001 13:24:29 +0000 Subject: 2001-09-13 Ralf Corsepius * configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS handling. --- c/src/tests/ChangeLog | 5 +++++ c/src/tests/configure.in | 32 ++++++++++++++++---------------- testsuites/ChangeLog | 5 +++++ 3 files changed, 26 insertions(+), 16 deletions(-) diff --git a/c/src/tests/ChangeLog b/c/src/tests/ChangeLog index 380fc3be32..a97c15faf6 100644 --- a/c/src/tests/ChangeLog +++ b/c/src/tests/ChangeLog @@ -1,3 +1,8 @@ +2001-09-13 Ralf Corsepius + + * configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS + handling. + 2001-05-10 Ralf Corsepius * configure.in: Remove RTEMS_PROG_CC_FOR_TARGET, diff --git a/c/src/tests/configure.in b/c/src/tests/configure.in index 732ee0ea6c..4cb604ffce 100644 --- a/c/src/tests/configure.in +++ b/c/src/tests/configure.in @@ -2,8 +2,9 @@ dnl Process this file with autoconf to produce a configure script. dnl dnl $Id$ -AC_PREREQ(2.13) -AC_INIT(samples) +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([samples]) RTEMS_TOP(../../..) AC_CONFIG_AUX_DIR(../../..) @@ -31,34 +32,33 @@ RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) RTEMS_CHECK_POSIX_API(RTEMS_BSP) RTEMS_CHECK_ITRON_API(RTEMS_BSP) +AC_CONFIG_SUBDIRS(tools) +AC_CONFIG_SUBDIRS(support) +AC_CONFIG_SUBDIRS(samples) + if test "$tests_enabled" = "yes"; then # do functionality tests first, then performance tests - cfg_subdirs="libtests sptests" + AC_CONFIG_SUBDIRS(libtests sptests) if test "$HAS_MP" = "yes"; then - cfg_subdirs="$cfg_subdirs mptests" + AC_CONFIG_SUBDIRS(mptests) fi if test "$HAS_POSIX_API" = "yes"; then - cfg_subdirs="$cfg_subdirs psxtests" + AC_CONFIG_SUBDIRS(psxtests) fi if test "$HAS_ITRON_API" = "yes"; then - cfg_subdirs="$cfg_subdirs itrontests" + AC_CONFIG_SUBDIRS(itrontests) fi # Now do performance tests - cfg_subdirs="$cfg_subdirs tmtests" + AC_CONFIG_SUBDIRS(tmtests) if test "$HAS_ITRON_API" = "yes"; then - cfg_subdirs="$cfg_subdirs tmitrontests" + AC_CONFIG_SUBDIRS(tmitrontests) fi fi AC_SUBST(BARE_CPU_CFLAGS) AC_SUBST(BARE_CPU_MODEL) -AC_CONFIG_SUBDIRS(tools) -AC_CONFIG_SUBDIRS(support) -AC_CONFIG_SUBDIRS(samples) -AC_CONFIG_SUBDIRS($cfg_subdirs) - # Explicitly list all Makefiles here -AC_OUTPUT( -Makefile -) +AC_CONFIG_FILES([Makefile +]) +AC_OUTPUT diff --git a/testsuites/ChangeLog b/testsuites/ChangeLog index 380fc3be32..a97c15faf6 100644 --- a/testsuites/ChangeLog +++ b/testsuites/ChangeLog @@ -1,3 +1,8 @@ +2001-09-13 Ralf Corsepius + + * configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS + handling. + 2001-05-10 Ralf Corsepius * configure.in: Remove RTEMS_PROG_CC_FOR_TARGET, -- cgit v1.2.3