From 3604522bf2768a40c962289cd06579711853af38 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 24 Sep 2017 15:04:40 -0500 Subject: [PATCH] Removed gmake disclaimer from BSD build instructions After cc35241a6ec7091beffb0fd570e1fe9c0d2d2f51, BSD users can just call make normally and have it redirect the build/install/test/whatever to GNU Make. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 42066faff..1d10249b4 100644 --- a/README.md +++ b/README.md @@ -133,13 +133,13 @@ Compiling from git (that is, not a released tarball) also requires: * automake 1.13 or later * Doxygen (1.8.7 or later) - optional, for documentation -### Autotools Build +### Building from source ```bash autoreconf --no-recursive #if building from Git ./configure -make #gmake on BSD -sudo make install #sudo gmake install on BSD +make +sudo make install ``` ### Xcode Development Build