diff options
| author | rubin <rubinowyblask@meow.li> | 2026-05-22 16:22:52 +0200 |
|---|---|---|
| committer | rubin <rubinowyblask@meow.li> | 2026-05-22 16:22:52 +0200 |
| commit | 7c8712572a48ad88e05b205edeaece5cfba8040a (patch) | |
| tree | f5d20df57e2049a2253abd8d561c622307299af6 | |
| parent | 572f8edb589499ae491f79cec4b6a98b59ed074e (diff) | |
Change CFLAGS for C99 and add more warnings
Signed-off-by: rubin <rubinowyblask@meow.li>
| -rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh index 6f1ddad..3dc4712 100755 --- a/build.sh +++ b/build.sh @@ -9,7 +9,7 @@ roll_print() { printf "\t\t%s\t%s\n" "$1" "$2"; } for i in fdwatcher network parent child main; do roll_print "CC" "$i.o" - "$CC" -I. -c -o "$i.o" "$i.c" + "$CC" -Wall -pedantic -std=c99 -I. -c -o "$i.o" "$i.c" done "$CC" -static -o aura fdwatcher.o network.o parent.o child.o main.o |
