summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-19 19:31:25 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-19 19:31:25 +0200
commit7d1a395c8b568e3692f6c4235b40e6c09d1780cc (patch)
tree53b40c516853bd7640248ea2c9eb4a47d6e5ab17 /GNUmakefile
parent6863efdb6ff2a739752a49afce671f0303fe5df1 (diff)
make release: Add x86_64-linux-gnu target.
Diffstat (limited to 'GNUmakefile')
-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