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

* configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS
	handling.
This commit is contained in:
Joel Sherrill
2001-09-13 13:24:29 +00:00
parent bc51d7e98f
commit a3ac20f7bb
3 changed files with 26 additions and 16 deletions

View File

@@ -1,3 +1,8 @@
2001-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS
handling.
2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: Remove RTEMS_PROG_CC_FOR_TARGET, * configure.in: Remove RTEMS_PROG_CC_FOR_TARGET,

View File

@@ -2,8 +2,9 @@ dnl Process this file with autoconf to produce a configure script.
dnl dnl
dnl $Id$ dnl $Id$
AC_PREREQ(2.13) AC_PREREQ(2.52)
AC_INIT(samples) AC_INIT
AC_CONFIG_SRCDIR([samples])
RTEMS_TOP(../../..) RTEMS_TOP(../../..)
AC_CONFIG_AUX_DIR(../../..) AC_CONFIG_AUX_DIR(../../..)
@@ -31,34 +32,33 @@ RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
RTEMS_CHECK_POSIX_API(RTEMS_BSP) RTEMS_CHECK_POSIX_API(RTEMS_BSP)
RTEMS_CHECK_ITRON_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 if test "$tests_enabled" = "yes"; then
# do functionality tests first, then performance tests # do functionality tests first, then performance tests
cfg_subdirs="libtests sptests" AC_CONFIG_SUBDIRS(libtests sptests)
if test "$HAS_MP" = "yes"; then if test "$HAS_MP" = "yes"; then
cfg_subdirs="$cfg_subdirs mptests" AC_CONFIG_SUBDIRS(mptests)
fi fi
if test "$HAS_POSIX_API" = "yes"; then if test "$HAS_POSIX_API" = "yes"; then
cfg_subdirs="$cfg_subdirs psxtests" AC_CONFIG_SUBDIRS(psxtests)
fi fi
if test "$HAS_ITRON_API" = "yes"; then if test "$HAS_ITRON_API" = "yes"; then
cfg_subdirs="$cfg_subdirs itrontests" AC_CONFIG_SUBDIRS(itrontests)
fi fi
# Now do performance tests # Now do performance tests
cfg_subdirs="$cfg_subdirs tmtests" AC_CONFIG_SUBDIRS(tmtests)
if test "$HAS_ITRON_API" = "yes"; then if test "$HAS_ITRON_API" = "yes"; then
cfg_subdirs="$cfg_subdirs tmitrontests" AC_CONFIG_SUBDIRS(tmitrontests)
fi fi
fi fi
AC_SUBST(BARE_CPU_CFLAGS) AC_SUBST(BARE_CPU_CFLAGS)
AC_SUBST(BARE_CPU_MODEL) 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 # Explicitly list all Makefiles here
AC_OUTPUT( AC_CONFIG_FILES([Makefile
Makefile ])
) AC_OUTPUT

View File

@@ -1,3 +1,8 @@
2001-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS
handling.
2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: Remove RTEMS_PROG_CC_FOR_TARGET, * configure.in: Remove RTEMS_PROG_CC_FOR_TARGET,