source: rtems/configure.in @ bc2f04f

4.104.114.84.95
Last change on this file since bc2f04f was dd9c6e0d, checked in by Joel Sherrill <joel.sherrill@…>, on 11/18/99 at 14:06:48

Patch rtems-rc-19991117-0.diff.gz from Ralf Corsepius
<corsepiu@…> which corrects some configuration
problems and cleans up a few Makefile.in's.

  • 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
51AC_OUTPUT(
52Makefile
53tools/Makefile
54make/Makefile
55make/custom/Makefile
56make/Templates/Makefile
57make/compilers/Makefile
58doc/Makefile)
59
60RTEMS_OUTPUT_SUBDIRS(RTEMS_TGT_SUBDIRS)
Note: See TracBrowser for help on using the repository browser.