source: rtems/c/make/configure.in @ 64f55e7

4.104.114.84.95
Last change on this file since 64f55e7 was d6c83529, checked in by Joel Sherrill <joel.sherrill@…>, on 11/16/99 at 15:48:11

Patch rtems-rc-19991105-1.diff.gz from Ralf Corsepius
<corsepiu@…> which does the following:

This is the configuration cleanup patch:

Main changes:

  • TARGET_ARCH removed
  • target.cfg.in moved to c/make/target.cfg.in (Only configured once for all BSPs of a target)
  • BARE_XXX variables appended to bsp.cfg.in
  • autogen renamed to bootstrap
  • removed stray variables from make/custom/*.cfg

To apply:

cd <source-tree>
rm c/src/make/target.cfg.in
cp autogen bootstrap
mkdir c/make
cp make/target.cfg.in c/make/target.cfg.in
rm make/target.cfg.in
rm autogen
patch -p1 < rtems-rc-19991105-1.diff

  • 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_NETWORKING
22RTEMS_ENABLE_RDBG
23RTEMS_ENABLE_INLINES
24RTEMS_ENABLE_CXX
25RTEMS_ENABLE_GCC28
26RTEMS_ENABLE_LIBCDIR
27
28RTEMS_CHECK_CPU
29RTEMS_CANONICAL_HOST
30
31RTEMS_PROJECT_ROOT
32
33dnl check target cc
34RTEMS_PROG_CC_FOR_TARGET
35
36dnl check for g++
37if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
38  RTEMS_PROG_CXX_FOR_TARGET
39fi
40
41RTEMS_CANONICALIZE_TOOLS
42
43AC_SUBST(rtems_cv_prog_cc_cross)
44AC_SUBST(RTEMS_HAS_POSIX)
45AC_SUBST(RTEMS_HOST)
46AC_SUBST(RTEMS_HAS_MULTIPROCESSING)
47AC_SUBST(RTEMS_HAS_POSIX_API)
48AC_SUBST(RTEMS_HAS_NETWORKING)
49AC_SUBST(RTEMS_HAS_RDBG)
50AC_SUBST(RTEMS_HAS_CPLUSPLUS)
51AC_SUBST(RTEMS_USE_MACROS)
52AC_SUBST(RTEMS_USE_GCC272)
53AC_SUBST(RTEMS_LIBC_DIR)
54AC_SUBST(RTEMS_CPU)
55
56AC_OUTPUT(
57Makefile
58target.cfg
59)
Note: See TracBrowser for help on using the repository browser.