diff options
| -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 |
