diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-08-24 06:34:33 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-08-24 06:35:12 +0200 |
commit | 28973b215e19b7a1cf686d5545bcf0c95639c3e9 (patch) | |
tree | 7d0a22d610aa4785dcfada0e59a961b6c3855e04 /GNUmakefile | |
parent | 65bdefaf7a0e0299e2a4361d107a9721eac9dd4e (diff) |
make release: Add musl targets.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 9d9ebea..bfb1b1b 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-gnu x86_64-linux-gnux32 x86_64-windows; do \ + @for target in aarch64-linux-gnu aarch64-linux-musl aarch64-macos-none arm-linux-gnueabihf arm-linux-musleabihf x86_64-linux-gnu x86_64-linux-gnux32 x86_64-linux-musl x86_64-windows; do \ echo "[ZIG] zig-release/$${target}"; \ $(ZIG) build -p zig-release/$${target} -Dtarget=$${target} --release=small; \ done |