This commit is contained in:
2026-02-15 14:55:02 +11:00
parent af4168f91a
commit 9e35c323d3
7 changed files with 254 additions and 16 deletions

View File

@@ -7,10 +7,10 @@ if [[ ! -v OUTPUT ]]; then
fi
if [[ ! -v CFLAGS ]]; then
CFLAGS=""
CFLAGS="-O3 -Wall -Wextra -pedantic"
fi
gcc "$0" -o "$OUTPUT"
gcc "$0" -o "$OUTPUT" $CFLAGS
if not [ $# -lt 1 ]; then
exec "./$OUTPUT" "$@"