source: rtems/configure.ac @ 6273201

4.115
Last change on this file since 6273201 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.68])
4AC_INIT([rtems],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
5AC_CONFIG_SRCDIR([c])
6RTEMS_TOP([.])
7
8# Abort if trying to build inside of the source tree.
9AS_IF([test -f aclocal/version.m4],[
10  rm -f config.cache config.log confdefs.h
11  AC_MSG_ERROR([***]
12    [Attempt to build inside of the source tree]
13    [Please use a separate build directory, instead] )
14])
15
16AC_CANONICAL_TARGET([])
17AM_INIT_AUTOMAKE([no-define foreign dist-bzip2 no-dist-gzip 1.11.1])
18AM_MAINTAINER_MODE
19
20## These option are only in here to let --help report all supported
21## options.
22RTEMS_ENABLE_MULTIPROCESSING
23RTEMS_ENABLE_POSIX
24RTEMS_ENABLE_NETWORKING
25RTEMS_ENABLE_CXX
26RTEMS_ENABLE_TESTS 
27RTEMS_ENABLE_RTEMS_DEBUG
28RTEMS_ENABLE_RTEMSBSP
29RTEMS_ENABLE_MULTILIB
30
31AC_ARG_ENABLE([docs],
32  [AS_HELP_STRING([--enable-docs],[enable building documentation
33    (default:disabled)])])
34
35## NOTES:
36## * tools/build are host-native tools to be installed on the host.
37## * tools/cpu are host-native or host-cross-target-tools
38
39RTEMS_BUILD_CONFIG_SUBDIRS([tools/build])
40RTEMS_BUILD_CONFIG_SUBDIRS([tools/cpu])
41
42case $enable_tests in
43yes | samples )
44  RTEMS_BUILD_CONFIG_SUBDIRS([testsuites/tools])
45  ;;
46esac
47
48# Some BSPs carelessly apply these tools as build-tools
49AS_IF([test $host != $build],[
50RTEMS_HOST_CONFIG_SUBDIRS([tools/build])
51])
52
53AS_IF([test x"${enable_docs}" = x"yes"],
54  [RTEMS_BUILD_CONFIG_SUBDIRS([doc])])
55
56AS_IF([test x"$enable_multilib" = x"yes"],[
57  RTEMS_TARGET_CONFIG_SUBDIRS([cpukit])
58])
59RTEMS_TARGET_CONFIG_SUBDIRS([c])
60
61AC_CONFIG_FILES([Makefile])
62
63AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.