shake
minimal build system that generates Ninja build files
git clone https://9o.is/git/shake.git
commit b5e2d04b752c18164bfa4c1a993e952f33be6bde parent e3fc634095f00b452112415ab3d2e73395c093bc Author: Jul <jul@9o.is> Date: Fri, 13 Mar 2026 19:01:19 +0800 remove shebangs from examples Diffstat:
| M | example/nested/Shakefile | | | 2 | -- |
| M | example/nested/bin/Shakefile | | | 2 | -- |
| M | example/nested/lib/Shakefile | | | 2 | -- |
| M | example/simple/Shakefile | | | 2 | -- |
4 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/example/nested/Shakefile b/example/nested/Shakefile @@ -1,5 +1,3 @@ -#!/usr/bin/env sh - var CC ${CC:-cc} var CFLAGS ${CFLAGS:--Wall -Wextra -g} var PREFIX ${PREFIX:-/usr/local} diff --git a/example/nested/bin/Shakefile b/example/nested/bin/Shakefile @@ -1,5 +1,3 @@ -#!/usr/bin/env sh - var CFLAGS $CFLAGS -I $LIBDIR cc main.o: main.c - $LIBDIR/lib.h diff --git a/example/nested/lib/Shakefile b/example/nested/lib/Shakefile @@ -1,4 +1,2 @@ -#!/usr/bin/env sh - cc lib.o: lib.c ar lib.a: lib.o diff --git a/example/simple/Shakefile b/example/simple/Shakefile @@ -1,5 +1,3 @@ -#!/usr/bin/env sh - var CC ${CC:-cc} var CFLAGS ${CFLAGS:--Wall -Wextra -g} var PREFIX ${PREFIX:-/usr/local}