From c2160b65083c043bdbeb744c023d42cf284dfc2d Mon Sep 17 00:00:00 2001 From: Gabriel GRONDIN Date: Mon, 12 Jul 2021 22:14:18 +0200 Subject: [PATCH] Update and rename INSTALL to BUILD.md --- BUILD.md | 22 ++++++++++++++++++++++ INSTALL | 23 ----------------------- 2 files changed, 22 insertions(+), 23 deletions(-) create mode 100644 BUILD.md delete mode 100644 INSTALL diff --git a/BUILD.md b/BUILD.md new file mode 100644 index 0000000..bde70da --- /dev/null +++ b/BUILD.md @@ -0,0 +1,22 @@ +### 1. If building from git (not needed for release tarballs): +Generate build system files (requires autoconf from autotools). +```bash +./autogen.sh +``` + +### 2. Generate makefiles +```bash +./configure +``` +> Run ./configure --help to see configuration options. + +### 3. Build executables +``` +make +``` + +### 4. Install executables and manual pages (optional) +```bash +make install +``` +> If you are on a system directory, don't forget to add ``sudo``. diff --git a/INSTALL b/INSTALL deleted file mode 100644 index 195f314..0000000 --- a/INSTALL +++ /dev/null @@ -1,23 +0,0 @@ - -1. If building from git (not needed for release tarballs): - Generate build system files (requires autoconf from autotools) - - ./autogen.sh - -2. Generate makefiles - (Run ./configure --help to see configuration options) - - ./configure - -3. Build executables - - make - -4. Install executables and manual pages (optional) - - make install - - If installing to a system directory use - - sudo make install -