source: rtems/configure.ac @ 1e84462

5
Last change on this file since 1e84462 was 397df7a, checked in by Sebastian Huber <sebastian.huber@…>, on 04/26/18 at 14:15:01

tests: Remove difftest and sorttimes tools

Close #3418.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([c])
6RTEMS_TOP([.])
7RTEMS_SOURCE_TOP
8RTEMS_BUILD_TOP
9
10# Abort if trying to build inside of the source tree.
11AS_IF([test -f aclocal/version.m4],[
12  rm -f config.cache config.log confdefs.h
13  AC_MSG_ERROR([***]
14    [Attempt to build inside of the source tree]
15    [Please use a separate build directory, instead] )
16])
17
18AC_CANONICAL_TARGET([])
19AM_INIT_AUTOMAKE([no-define foreign dist-bzip2 no-dist-gzip subdir-objects 1.12.2])
20AM_MAINTAINER_MODE
21
22## These option are only in here to let --help report all supported
23## options.
24RTEMS_ENABLE_RTEMSBSP
25RTEMS_ENABLE_MULTIPROCESSING
26RTEMS_ENABLE_SMP
27RTEMS_ENABLE_POSIX
28RTEMS_ENABLE_NETWORKING
29RTEMS_ENABLE_CXX
30RTEMS_ENABLE_TESTS
31RTEMS_ENABLE_RTEMS_DEBUG
32RTEMS_ENABLE_PARAVIRT
33RTEMS_ENABLE_DRVMGR
34
35## Check if there are valid tools install and in the path.
36RTEMS_CHECK_TOOL(RTEMS_CC,gcc)
37test -z "$RTEMS_CC" && AC_MSG_ERROR([no acceptable cc found in \$PATH])
38
39## NOTES:
40## * tools/build are host-native tools to be installed on the host.
41## * tools/cpu are host-native or host-cross-target-tools
42
43RTEMS_BUILD_CONFIG_SUBDIRS([tools/build])
44RTEMS_BUILD_CONFIG_SUBDIRS([tools/cpu])
45
46# Some BSPs carelessly apply these tools as build-tools
47AS_IF([test $host != $build],[
48RTEMS_HOST_CONFIG_SUBDIRS([tools/build])
49])
50
51RTEMS_TARGET_CONFIG_SUBDIRS([c])
52
53AC_CONFIG_FILES([Makefile])
54
55AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.