diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-08-24 06:36:20 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-08-24 06:36:20 +0200 |
commit | 14ba60acfb81912e59d434c71be1fd33fc9a383b (patch) | |
tree | 1b233c38b9f084fec7059b1c06a1d03a0564fa39 | |
parent | 28973b215e19b7a1cf686d5545bcf0c95639c3e9 (diff) |
GNUmakefile: Reformat a bit.
-rw-r--r-- | GNUmakefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index bfb1b1b..1bce993 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -24,7 +24,18 @@ run: ## Compile and run program in debug mode @$(ZIG) build run release: ## Compile program in release mode - @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 \ + @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 |