source: rtems/c/src/tests/configure.in @ cf1f72e

4.104.114.84.95
Last change on this file since cf1f72e was cf1f72e, checked in by Joel Sherrill <joel.sherrill@…>, on 06/13/00 at 21:53:38

Moved i386 and m68k cache management code to libcpu. Everything
now is an implementation of the prototypes in rtems/rtems/cache.h.
The libcpu/i386/wrapup directory is no longer needed.
The PowerPC needs this done to it.

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[eb299afc]1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5AC_PREREQ(2.13)
[3a8915e]6AC_INIT(samples)
[eb299afc]7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
[3a8915e]12AM_INIT_AUTOMAKE(rtems-c-src-tests,$RTEMS_VERSION,no)
[eb299afc]13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_MULTIPROCESSING
16RTEMS_ENABLE_POSIX
[352c9b2]17RTEMS_ENABLE_ITRON
[eb299afc]18RTEMS_ENABLE_NETWORKING
19RTEMS_ENABLE_INLINES
20RTEMS_ENABLE_CXX
21RTEMS_ENABLE_GCC28
22RTEMS_ENABLE_BARE
23RTEMS_ENABLE_TESTS
24
25RTEMS_ENV_RTEMSBSP
26RTEMS_CHECK_CPU
27RTEMS_CANONICAL_HOST
28
29RTEMS_PROJECT_ROOT
30
31RTEMS_PROG_CC_FOR_TARGET
32
33dnl check for g++
34if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
35  RTEMS_PROG_CXX_FOR_TARGET
36fi
37
38RTEMS_CANONICALIZE_TOOLS
39
40RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
[1896a650]41RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
[3a8915e]42RTEMS_CHECK_POSIX_API(RTEMS_BSP)
[352c9b2]43RTEMS_CHECK_ITRON_API(RTEMS_BSP)
[1896a650]44
[eb299afc]45if test "$tests_enabled" = "yes"; then
[352c9b2]46  # do functionality tests first, then performance tests
[cf1f72e]47  cfg_subdirs="libtests sptests libffi"
[1896a650]48  if test "$HAS_MP" = "yes"; then
[3a8915e]49    cfg_subdirs="$cfg_subdirs mptests"
[1896a650]50  fi
[3a8915e]51  if test "$HAS_POSIX_API" = "yes"; then
52    cfg_subdirs="$cfg_subdirs psxtests"
[1896a650]53  fi
[352c9b2]54  if test "$HAS_ITRON_API" = "yes"; then
[7dbb0bd]55    cfg_subdirs="$cfg_subdirs itrontests"
[352c9b2]56  fi
57  # Now do performance tests
[3a8915e]58  cfg_subdirs="$cfg_subdirs tmtests"
[352c9b2]59  if test "$HAS_ITRON_API" = "yes"; then
60    cfg_subdirs="$cfg_subdirs tmitrontests"
61  fi
[3a8915e]62fi
[eb299afc]63
64AC_SUBST(BARE_CPU_CFLAGS)
65AC_SUBST(BARE_CPU_MODEL)
66
[3a8915e]67AC_CONFIG_SUBDIRS(tools)
68AC_CONFIG_SUBDIRS(support)
69AC_CONFIG_SUBDIRS(samples)
70AC_CONFIG_SUBDIRS($cfg_subdirs)
[eb299afc]71
[70810dc]72# Explicitly list all Makefiles here
[eb299afc]73AC_OUTPUT(
74Makefile
[3a8915e]75)
Note: See TracBrowser for help on using the repository browser.