From b3722d45a5de43a231335e30986065774321f9dc Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Wed, 19 Jun 2019 21:01:59 -0500 Subject: [PATCH] Remove references to autotools from COMPILING.md --- COMPILING.md | 32 +------------------------------- README.md | 2 +- 2 files changed, 2 insertions(+), 32 deletions(-) diff --git a/COMPILING.md b/COMPILING.md index c1c9143..9b4a58f 100644 --- a/COMPILING.md +++ b/COMPILING.md @@ -4,17 +4,13 @@ The following build systems are available for Bzip2: * [Meson]: This is our preferred build system for Unix-like systems. * [CMake]: Build tool for Unix and Windows. -* GNU [Autotools]: Another traditional build system for Unix-like - systems. * nmake: Unsupported; used only for Windows and Microsoft Visual Studio 2013 or later. -Autotools is only supported on Unix-like OSes, nmake is only for Windows, -meson works for both. +Meson works for Unix-like OSes and Windows; nmake is only for Windows. [Meson]: https://mesonbuild.com [CMake]: https://cmake.org -[Autotools]: https://autotools.io/index.html ## Using Meson @@ -164,32 +160,6 @@ cmake --build . --config Release ctest -C Release -V ``` -## Using GNU Autotools - -### Build instructions for Unix (Autotools) - -If you are compiling a tarball: - -```sh -./configure --prefix=/usr -make -make check -make install -``` - -See the [`INSTALL`](INSTALL) file for details on options you can pass -to the `configure` script to select where to install the compiled -library. - -If you are compiling from a git checkout: - -```sh -./autogen.sh --prefix=/usr -make -make check -make install -``` - ## Using nmake on Windows Bzip2 can be built with Microsoft Visual Studio 2013 or later. From a Visual diff --git a/README.md b/README.md index b0eb122..b36239f 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ repository][gitlab] as well. ## Compiling Bzip2 and libbz2 Please see the [`COMPILING.md`][COMPILING.md] file for details. This includes -instructions for buliding using Meson, CMake, GNU Autotools, or nmake. +instructions for buliding using Meson, CMake, or nmake. [COMPILING.md]: COMPILING.md