source: rtems/c/src/tests/configure.in @ 5a23ca84

4.104.114.84.95
Last change on this file since 5a23ca84 was 70810dc, checked in by Joel Sherrill <joel.sherrill@…>, on 02/08/00 at 22:33:25

Patches rtems-rc-20000204-0.diff from Ralf Corsepius <corsepiu@…>
that contains:

  • Removes remaining (now illegal) references to $(SRC) from a couple of Makefile.ams
  • Removes duplicate AC_CONFIG_SUBDIRS macro from c/configure.in
  • Moves ENABLE_LIBCDIR into RTEMS_PROG_C[C|XX]_FOR_TARGET (hides LIBCDIR from most configure scripts, i.e. LIBCDIR becomes less visible)
  • Adds RTEMS_PROG_C[C|XX]_FOR_TARGET and RTEMS_CANONICALIZE_TOOLS to libbsp/*/configure.ins (A minor bug in previous implementations, which only has an impact when switching to GNU/Cygnus canonicalization)
  • Cleans up several bogus comments.
  • Removes MKLIB
  • Switches the version number to 4.5.0 (for testing version number handling)
  • Property mode set to 100644
File size: 1.5 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
[3a8915e]47  cfg_subdirs="libtests sptests"
[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.