Add -Wextra flag for compilation

This commit is contained in:
Abdelrahman Said 2025-02-09 16:34:12 +00:00
parent d1d6a8e64b
commit fdb0650634

View File

@ -16,7 +16,7 @@ while [[ $# > 0 ]];do
done done
CC=clang CC=clang
CFLAGS="-Wall -Werror -pedantic" CFLAGS="-Wall -Wextra -Werror -pedantic"
LIBFLAGS="-fPIC -shared" LIBFLAGS="-fPIC -shared"
INCLUDE="$(find src -type d | xargs -I{} echo -n "-I{} ")" INCLUDE="$(find src -type d | xargs -I{} echo -n "-I{} ")"