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
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(samples)
7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src-tests,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_MULTIPROCESSING
16RTEMS_ENABLE_POSIX
17RTEMS_ENABLE_ITRON
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)
41RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
42RTEMS_CHECK_POSIX_API(RTEMS_BSP)
43RTEMS_CHECK_ITRON_API(RTEMS_BSP)
44
45if test "$tests_enabled" = "yes"; then
46  # do functionality tests first, then performance tests
47  cfg_subdirs="libtests sptests"
48  if test "$HAS_MP" = "yes"; then
49    cfg_subdirs="$cfg_subdirs mptests"
50  fi
51  if test "$HAS_POSIX_API" = "yes"; then
52    cfg_subdirs="$cfg_subdirs psxtests"
53  fi
54  if test "$HAS_ITRON_API" = "yes"; then
55    cfg_subdirs="$cfg_subdirs itrontests"
56  fi
57  # Now do performance tests
58  cfg_subdirs="$cfg_subdirs tmtests"
59  if test "$HAS_ITRON_API" = "yes"; then
60    cfg_subdirs="$cfg_subdirs tmitrontests"
61  fi
62fi
63
64AC_SUBST(BARE_CPU_CFLAGS)
65AC_SUBST(BARE_CPU_MODEL)
66
67AC_CONFIG_SUBDIRS(tools)
68AC_CONFIG_SUBDIRS(support)
69AC_CONFIG_SUBDIRS(samples)
70AC_CONFIG_SUBDIRS($cfg_subdirs)
71
72# Explicitly list all Makefiles here
73AC_OUTPUT(
74Makefile
75)
Note: See TracBrowser for help on using the repository browser.