source: rtems/c/make/configure.ac @ d0d73ec

4.104.114.84.95
Last change on this file since d0d73ec was cb9b2bfc, checked in by Joel Sherrill <joel.sherrill@…>, on 04/16/02 at 13:53:23

2002-04-14 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove ENABLE_GCC28.
  • Property mode set to 100644
File size: 938 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5##
6## This script configures the configuration files below c/make/
7##
8
9AC_PREREQ(2.52)
10AC_INIT([rtems-c-make],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
11AC_CONFIG_SRCDIR([target.cfg.in])
12RTEMS_TOP(../..)
13AC_CONFIG_AUX_DIR(../..)
14
15RTEMS_CANONICAL_TARGET_CPU
16
17AM_INIT_AUTOMAKE([no-define foreign 1.6])
18AM_MAINTAINER_MODE
19
20RTEMS_ENABLE_MULTIPROCESSING
21RTEMS_ENABLE_POSIX
22RTEMS_ENABLE_ITRON
23RTEMS_ENABLE_NETWORKING
24RTEMS_ENABLE_RDBG
25RTEMS_ENABLE_INLINES
26RTEMS_ENABLE_CXX
27
28RTEMS_CHECK_CPU
29RTEMS_CANONICAL_HOST
30
31RTEMS_PROJECT_ROOT
32
33RTEMS_PROG_CC_FOR_TARGET
34
35## 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_CPU)
46
47# Explicitly list all Makefiles here
48AC_CONFIG_FILES([Makefile
49target.cfg
50])
51AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.