source: rtems/configure.in @ bf85b19

4.104.114.84.95
Last change on this file since bf85b19 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: 1.2 KB
Line 
1
2dnl Process this file with autoconf to produce a configure script.
3dnl
4dnl  $Id$
5
6AC_PREREQ(2.13)
7AC_INIT(c)
8RTEMS_TOP(.)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems,$RTEMS_VERSION,no)
12AM_MAINTAINER_MODE
13
14dnl RTEMS_ENABLE_BARE
15dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp)
16
17dnl These option are only in here to let --help report all supported
18dnl options.
19RTEMS_ENABLE_MULTIPROCESSING
20RTEMS_ENABLE_POSIX
21RTEMS_ENABLE_ITRON
22RTEMS_ENABLE_NETWORKING
23RTEMS_ENABLE_RDBG
24RTEMS_ENABLE_INLINES
25RTEMS_ENABLE_CXX
26RTEMS_ENABLE_GCC28
27RTEMS_ENABLE_LIBCDIR
28RTEMS_ENABLE_TESTS
29RTEMS_ENABLE_HWAPI
30
31RTEMS_CHECK_CPU
32RTEMS_CANONICAL_HOST
33
34AC_CONFIG_SUBDIRS(tools/build)
35AC_CONFIG_SUBDIRS(tools/update)
36AC_CONFIG_SUBDIRS(tools/cpu)
37
38# List all subdirectories to be compiled for the target here
39RTEMS_CONFIG_SUBDIRS(c)
40
41if test "$target_alias" != "$host_alias"; then
42changequote(,)dnl
43TARGET_SUBDIRS=`echo "$target_subdirs" | \
44 sed -e "s%\([^ ]\+\)%$target_alias/\1%g"`
45changequote([,])dnl
46else
47TARGET_SUBDIRS="$target_subdirs"
48fi
49AC_SUBST(TARGET_SUBDIRS)
50
51# Explicitly list all Makefiles here
52AC_OUTPUT(
53Makefile
54tools/Makefile
55make/Makefile
56make/custom/Makefile
57make/Templates/Makefile
58make/compilers/Makefile
59doc/Makefile)
60
61RTEMS_OUTPUT_SUBDIRS(RTEMS_TGT_SUBDIRS)
Note: See TracBrowser for help on using the repository browser.