diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-08-19 19:31:25 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-08-19 19:31:25 +0200 |
commit | 7d1a395c8b568e3692f6c4235b40e6c09d1780cc (patch) | |
tree | 53b40c516853bd7640248ea2c9eb4a47d6e5ab17 | |
parent | 6863efdb6ff2a739752a49afce671f0303fe5df1 (diff) |
make release: Add x86_64-linux-gnu target.
-rw-r--r-- | GNUmakefile | 2 |
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 |