source: rtems/c/make/configure.in @ 37731c2b

4.104.114.84.95
Last change on this file since 37731c2b was b00b6a7, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 18:06:01

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Remove rtems_cv_prog_cc_cross reference.
  • target.cfg.in: Delete commented out lines regarding obsolete lines.
  • Property mode set to 100644
File size: 903 bytes
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
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_HAS_POSIX)
43AC_SUBST(RTEMS_HOST)
44AC_SUBST(RTEMS_HAS_CPLUSPLUS)
45AC_SUBST(RTEMS_USE_GCC272)
46AC_SUBST(RTEMS_CPU)
47
48# Explicitly list all Makefiles here
49AC_OUTPUT(
50Makefile
51target.cfg
52)
Note: See TracBrowser for help on using the repository browser.