Files
rtems/testsuites/configure.ac
Ralf Corsepius fcb0cd462c 2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: New BUG-REPORT address.
2006-12-02 06:06:55 +00:00

58 lines
1.3 KiB
Plaintext

## Process this file with autoconf to produce a configure script.
##
## $Id$
AC_PREREQ(2.60)
AC_INIT([rtems-c-src-tests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
AC_CONFIG_SRCDIR([PROBLEMS])
RTEMS_TOP([..],[])
RTEMS_CANONICAL_TARGET_CPU
AM_INIT_AUTOMAKE([no-define foreign 1.10])
AM_MAINTAINER_MODE
RTEMS_ENABLE_TESTS
RTEMS_ENABLE_CXX
RTEMS_ENV_RTEMSBSP
RTEMS_PROJECT_ROOT
RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
RTEMS_PROG_CC
RTEMS_CHECK_CPUOPTS([RTEMS_POSIX_API])
RTEMS_CHECK_CPUOPTS([RTEMS_ITRON_API])
RTEMS_CHECK_CPUOPTS([RTEMS_MULTIPROCESSING])
RTEMS_CHECK_CPUOPTS([RTEMS_NETWORKING])
case $enable_tests in
yes | samples )
AC_CONFIG_SUBDIRS(samples)
;;
esac
if test "$enable_tests" = "yes"; then
# do functionality tests first, then performance tests
AC_CONFIG_SUBDIRS(libtests sptests)
if test "$rtems_cv_RTEMS_MULTIPROCESSING" = "yes"; then
AC_CONFIG_SUBDIRS(mptests)
fi
if test "$rtems_cv_RTEMS_POSIX_API" = "yes"; then
AC_CONFIG_SUBDIRS(psxtests)
fi
if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
AC_CONFIG_SUBDIRS(itrontests)
fi
# Now do performance tests
AC_CONFIG_SUBDIRS(tmtests)
if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
AC_CONFIG_SUBDIRS(tmitrontests)
fi
fi
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
AC_OUTPUT