sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 23ae7cc600207b994f981b34a6bb702b5a2089e8
parent 0c0974c8177d29d910df5b9f0b2732848b9399b1
Author: rofl0r <retnyg@gmx.net>
Date:   Sat, 16 Jun 2018 17:22:03 +0100

sucks: re-add GNU make

GNU make is ubiquitous, even the lame BSDs have it installed and there's no
reason to not use its advanced features over the dumb-ass POSIX make.
It's still slim and highly portable. It builds in 2 seconds from source on any
half-ways modern system.
from all the modern build environments it's the best choice, and that's the
reason why musl uses it.

Diffstat:
Msuckless.org/sucks/index.md | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/suckless.org/sucks/index.md b/suckless.org/sucks/index.md @@ -63,13 +63,14 @@ As these build systems are often used to compile C programs, one has to set up a C++ compiler or Python interpreter respectively just in order to be able to build some C code. -Alternatives: [mk][16], [make][17] +Alternatives: [mk][16], [make][17], [gnu make][20] [13]: http://www.cmake.org/ [14]: https://code.google.com/p/waf/ [15]: http://www.scons.org/ [16]: http://doc.cat-v.org/plan_9/4th_edition/papers/mk [17]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/make.html +[20]: https://www.gnu.org/software/make/ Version Control Systems -----------------------