summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 1279cf2..9d9ebea 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -24,7 +24,7 @@ run: ## Compile and run program in debug mode
@$(ZIG) build run
release: ## Compile program in release mode
- @for target in aarch64-linux-gnu aarch64-macos-none arm-linux-gnueabihf x86_64-linux-gnux32 x86_64-windows; do \
+ @for target in aarch64-linux-gnu aarch64-macos-none arm-linux-gnueabihf x86_64-linux-gnu x86_64-linux-gnux32 x86_64-windows; do \
echo "[ZIG] zig-release/$${target}"; \
$(ZIG) build -p zig-release/$${target} -Dtarget=$${target} --release=small; \
done