source: rtems/c/src/tests/configure.in @ 41ab6966

4.104.114.84.95
Last change on this file since 41ab6966 was 8ef3818, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 19:57:02

Patch from John Cotton <john.cotton@…>, Charles-Antoine Gauthier
<charles.gauthier@…>, and Darlene A. Stewart
<Darlene.Stewart@…> to add support for a number of very
significant things:

+ BSPs for many variations on the Motorola MBX8xx board series
+ Cache Manager including initial support for m68040

and PowerPC

+ Rework of mpc8xx libcpu code so all mpc8xx CPUs now use

same code base.

+ Rework of eth_comm BSP to utiltize above.

John reports this works on the 821 and 860

  • Property mode set to 100644
File size: 1.6 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(libffi)
71AC_CONFIG_SUBDIRS($cfg_subdirs)
72
73# Explicitly list all Makefiles here
74AC_OUTPUT(
75Makefile
76)
Note: See TracBrowser for help on using the repository browser.