source: rtems/c/make/configure.in @ 4e36a2f

4.104.114.84.95
Last change on this file since 4e36a2f was 1d9a2fc, checked in by Joel Sherrill <joel.sherrill@…>, on 11/29/99 at 15:45:11

Patch rtems-rc-19991123-rc-0.diff from Ralf Corsepius <corsepiu@…>
which (among other things) converted the mptests to automake.

SUB_DIRS was used instead of SUBDIRS in some Makefile.ins
(apparently a leftover from moving the start* directories)

Addtional major bugs:

  • psxtests/include was empty (incomplete psxtests changes).
  • bogus handling of *.scn in itrontests (screens/sptests vs. screens/itrontests installation dirs)

In addition I have added a few more changes (I couldn't resist)

  • automake support for itrontests
  • OPERATION_COUNT support in tmitrontests/
  • automake support for tmitrontests
  • automake suppport for mptests
  • Some (minor) corrections to several configure.in/Makefile.ams

=> c/src/tests/ is completly under automake control, now.
=> we could start to sort out the structural issues with c/src/tests

(tests/support, stubdr, tools, get "make dist" working)

  • Property mode set to 100644
File size: 1.1 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5dnl
6dnl This script configures the configuration files below c/make/
7dnl
8
9AC_PREREQ(2.13)
10AC_INIT(target.cfg.in)
11RTEMS_TOP(../..)
12AC_CONFIG_AUX_DIR(../..)
13
14RTEMS_CANONICAL_TARGET_CPU
15
16AM_INIT_AUTOMAKE(rtems-c-make,$RTEMS_VERSION,no)
17AM_MAINTAINER_MODE
18
19RTEMS_ENABLE_MULTIPROCESSING
20RTEMS_ENABLE_POSIX
21RTEMS_ENABLE_ITRON
22RTEMS_ENABLE_NETWORKING
23RTEMS_ENABLE_RDBG
24RTEMS_ENABLE_INLINES
25RTEMS_ENABLE_CXX
26RTEMS_ENABLE_GCC28
27RTEMS_ENABLE_LIBCDIR
28
29RTEMS_CHECK_CPU
30RTEMS_CANONICAL_HOST
31
32RTEMS_PROJECT_ROOT
33
34dnl check target cc
35RTEMS_PROG_CC_FOR_TARGET
36
37dnl check for g++
38if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
39  RTEMS_PROG_CXX_FOR_TARGET
40fi
41
42RTEMS_CANONICALIZE_TOOLS
43
44AC_SUBST(rtems_cv_prog_cc_cross)
45AC_SUBST(RTEMS_HAS_POSIX)
46AC_SUBST(RTEMS_HOST)
47AC_SUBST(RTEMS_HAS_MULTIPROCESSING)
48AC_SUBST(RTEMS_HAS_POSIX_API)
49AC_SUBST(RTEMS_HAS_ITRON_API)
50AC_SUBST(RTEMS_HAS_NETWORKING)
51AC_SUBST(RTEMS_HAS_RDBG)
52AC_SUBST(RTEMS_HAS_CPLUSPLUS)
53AC_SUBST(RTEMS_USE_MACROS)
54AC_SUBST(RTEMS_USE_GCC272)
55AC_SUBST(RTEMS_LIBC_DIR)
56AC_SUBST(RTEMS_CPU)
57
58AC_OUTPUT(
59Makefile
60target.cfg
61)
Note: See TracBrowser for help on using the repository browser.