source: rtems/configure.ac @ 02550220

4.115
Last change on this file since 02550220 was 12072880, checked in by Sebastian Huber <sebastian.huber@…>, on 12/04/14 at 09:03:50

Update bug report URL

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[66387986]1## Process this file with autoconf to produce a configure script.
[6f9c75c3]2
[0f77281]3AC_PREREQ([2.69])
[12072880]4AC_INIT([rtems],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
[e712997]5AC_CONFIG_SRCDIR([c])
[ba748523]6RTEMS_TOP([.])
[254b4450]7
[df49c60]8# Abort if trying to build inside of the source tree.
[bcf4d5bc]9AS_IF([test -f aclocal/version.m4],[
[df49c60]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] )
[bcf4d5bc]14])
[df49c60]15
[e712997]16AC_CANONICAL_TARGET([])
[bb2b825]17AM_INIT_AUTOMAKE([no-define foreign dist-bzip2 no-dist-gzip 1.12.2])
[6693a68]18AM_MAINTAINER_MODE
[04c308c]19
[66387986]20## These option are only in here to let --help report all supported
21## options.
[04c308c]22RTEMS_ENABLE_MULTIPROCESSING
23RTEMS_ENABLE_POSIX
24RTEMS_ENABLE_NETWORKING
25RTEMS_ENABLE_CXX
[3174a7ed]26RTEMS_ENABLE_TESTS 
[39607984]27RTEMS_ENABLE_RTEMS_DEBUG
[9078e097]28RTEMS_ENABLE_RTEMSBSP
[ba748523]29RTEMS_ENABLE_MULTILIB
[a9051de9]30RTEMS_ENABLE_PARAVIRT
[48ad47cc]31
[003d4da]32AC_ARG_ENABLE([docs],
[7d10416]33  [AS_HELP_STRING([--enable-docs],[enable building documentation
[003d4da]34    (default:disabled)])])
35
[48ad47cc]36## NOTES:
37## * tools/build are host-native tools to be installed on the host.
38## * tools/cpu are host-native or host-cross-target-tools
[872cc62]39
[0b22af6]40RTEMS_BUILD_CONFIG_SUBDIRS([tools/build])
41RTEMS_BUILD_CONFIG_SUBDIRS([tools/cpu])
[7fe5a88c]42
[6f5b510]43case $enable_tests in
44yes | samples )
45  RTEMS_BUILD_CONFIG_SUBDIRS([testsuites/tools])
46  ;;
47esac
48
[0b22af6]49# Some BSPs carelessly apply these tools as build-tools
50AS_IF([test $host != $build],[
[ba748523]51RTEMS_HOST_CONFIG_SUBDIRS([tools/build])
[0b22af6]52])
[3174a7ed]53
[003d4da]54AS_IF([test x"${enable_docs}" = x"yes"],
[7a928017]55  [RTEMS_BUILD_CONFIG_SUBDIRS([doc])])
[003d4da]56
[be3e0f7]57AS_IF([test x"$enable_multilib" = x"yes"],[
58  RTEMS_TARGET_CONFIG_SUBDIRS([cpukit])
[6f6cde6f]59])
[ba748523]60RTEMS_TARGET_CONFIG_SUBDIRS([c])
[254b4450]61
[86c2108d]62AC_CONFIG_FILES([Makefile])
[6693a68]63
[ba748523]64AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.