source: rtems/c/make/configure.in @ df49c60

4.104.114.84.95
Last change on this file since df49c60 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: 936 bytes
RevLine 
[d6c83529]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
[1d9a2fc]21RTEMS_ENABLE_ITRON
[d6c83529]22RTEMS_ENABLE_NETWORKING
23RTEMS_ENABLE_RDBG
24RTEMS_ENABLE_INLINES
25RTEMS_ENABLE_CXX
26RTEMS_ENABLE_GCC28
27
28RTEMS_CHECK_CPU
29RTEMS_CANONICAL_HOST
30
31RTEMS_PROJECT_ROOT
32
33RTEMS_PROG_CC_FOR_TARGET
34
35dnl check for g++
36if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
37  RTEMS_PROG_CXX_FOR_TARGET
38fi
39
40RTEMS_CANONICALIZE_TOOLS
41
42AC_SUBST(rtems_cv_prog_cc_cross)
43AC_SUBST(RTEMS_HAS_POSIX)
44AC_SUBST(RTEMS_HOST)
45AC_SUBST(RTEMS_HAS_CPLUSPLUS)
46AC_SUBST(RTEMS_USE_GCC272)
47AC_SUBST(RTEMS_CPU)
48
[70810dc]49# Explicitly list all Makefiles here
[d6c83529]50AC_OUTPUT(
51Makefile
52target.cfg
53)
Note: See TracBrowser for help on using the repository browser.