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

4.104.114.84.95
Last change on this file since f918e74 was 7273b6e, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:54:58

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 984 bytes
RevLine 
[66387986]1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
[d6c83529]4
[66387986]5##
6## This script configures the configuration files below c/make/
7##
[d6c83529]8
[66387986]9AC_PREREQ(2.52)
[7273b6e]10AC_INIT([rtems-c-make],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
[66387986]11AC_CONFIG_SRCDIR([target.cfg.in])
[d6c83529]12RTEMS_TOP(../..)
13AC_CONFIG_AUX_DIR(../..)
14
15RTEMS_CANONICAL_TARGET_CPU
16
[7273b6e]17AM_INIT_AUTOMAKE([no-define foreign 1.6])
[d6c83529]18AM_MAINTAINER_MODE
19
20RTEMS_ENABLE_MULTIPROCESSING
21RTEMS_ENABLE_POSIX
[1d9a2fc]22RTEMS_ENABLE_ITRON
[d6c83529]23RTEMS_ENABLE_NETWORKING
24RTEMS_ENABLE_RDBG
25RTEMS_ENABLE_INLINES
26RTEMS_ENABLE_CXX
27RTEMS_ENABLE_GCC28
28
29RTEMS_CHECK_CPU
30RTEMS_CANONICAL_HOST
31
32RTEMS_PROJECT_ROOT
33
34RTEMS_PROG_CC_FOR_TARGET
35
[66387986]36## check for g++
[d6c83529]37if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
38  RTEMS_PROG_CXX_FOR_TARGET
39fi
40
41RTEMS_CANONICALIZE_TOOLS
42
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
[66387986]50AC_CONFIG_FILES([Makefile
[d6c83529]51target.cfg
[66387986]52])
53AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.