summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-26 14:00:41 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-09-21 07:39:09 +0200
commitdb8f598d56951cf43f22a5e325e0d23c8f7559f9 (patch)
tree607bc2e2c842bb932bce53efc7423e73ef18f6ff /configure.ac
parentarm/lpc24xx: Use common test definition file (diff)
downloadrtems-db8f598d56951cf43f22a5e325e0d23c8f7559f9.tar.bz2
build: Remove old build system
Close #3250. Close #4081.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac39
1 files changed, 0 insertions, 39 deletions
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 2de9af56a4..0000000000
--- a/configure.ac
+++ /dev/null
@@ -1,39 +0,0 @@
-## Process this file with autoconf to produce a configure script.
-
-AC_PREREQ([2.69])
-AC_INIT([rtems],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
-AC_CONFIG_SRCDIR([c])
-RTEMS_TOP([.])
-RTEMS_SOURCE_TOP
-RTEMS_BUILD_TOP
-
-# Abort if trying to build inside of the source tree.
-AS_IF([test -f aclocal/version.m4],[
- rm -f config.cache config.log confdefs.h
- AC_MSG_ERROR([***]
- [Attempt to build inside of the source tree]
- [Please use a separate build directory, instead] )
-])
-
-AC_CANONICAL_TARGET([])
-AM_INIT_AUTOMAKE([no-define foreign dist-bzip2 no-dist-gzip subdir-objects 1.12.2])
-AM_MAINTAINER_MODE
-
-## These option are only in here to let --help report all supported
-## options.
-RTEMS_ENABLE_RTEMSBSP
-RTEMS_ENABLE_MULTIPROCESSING
-RTEMS_ENABLE_SMP
-RTEMS_ENABLE_POSIX
-RTEMS_ENABLE_NETWORKING
-RTEMS_ENABLE_CXX
-RTEMS_ENABLE_TESTS
-RTEMS_ENABLE_RTEMS_DEBUG
-RTEMS_ENABLE_PARAVIRT
-RTEMS_ENABLE_DRVMGR
-
-RTEMS_TARGET_CONFIG_SUBDIRS([c])
-
-AC_CONFIG_FILES([Makefile])
-
-AC_OUTPUT