commit 985b3e3c141f9f4ecc5e85a3a636a417176a8225
parent eacd995bdee4312dc4d5b57d00a3e1beae330941
Author: mtmn <miro@haravara.org>
Date: Mon, 15 Jun 2026 01:09:17 +0200
just: add help and clean recipes
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/justfile b/justfile
@@ -1,3 +1,6 @@
+help:
+ @just --list
+
run opt="Debug":
zig build run -Doptimize={{ opt }}
@@ -9,3 +12,6 @@ build opt="Debug":
install opt="ReleaseSafe" path="~/.local":
zig build -Doptimize={{ opt }} --prefix {{ path }} install
+
+clean:
+ rm -rf .zig-cache zig-pkg zig-out