loksh-noxz

[fork] a Linux port of OpenBSD's ksh
git clone https://noxz.tech/git/loksh-noxz.git
Log | Files | README

commit: 2b97d14594acba2696f39b0414a90c7f9c896943
parent: fccb6733b45f73f7006f2870f1789717463ff3d7
author: Chris Noxz <chris@noxz.tech>
date:   Tue, 9 Mar 2021 20:25:02 +0100
Add make wrapper for meson/ninja
AMakefile9+++++++++
1 file changed, 9 insertions(+)
diff --git a/Makefile b/Makefile
@@ -0,0 +1,9 @@
+all:
+	[ -d build ] || meson --prefix=/usr/local build
+	ninja -C build
+
+install:
+	ninja -C build install
+
+clean:
+	ninja -C build clean