diff options
Diffstat (limited to 'libgui/Makefile')
-rw-r--r-- | libgui/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgui/Makefile b/libgui/Makefile index a29a393..6d2f087 100644 --- a/libgui/Makefile +++ b/libgui/Makefile @@ -8,7 +8,8 @@ CC = ccache ../cross/opt/bin/i686-elf-gcc LD = ccache ../cross/opt/bin/i686-elf-ld AR = ccache ../cross/opt/bin/i686-elf-ar -CFLAGS = -Wall -Wextra -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ -I../libc/inc/ -fPIE -Duserspace -Ofast +WARNINGS = -Wall -Wextra -pedantic-errors -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wno-long-long +CFLAGS = $(WARNINGS) -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -Iinc/ -I../libc/inc/ -fPIE -Duserspace -Ofast all: libgui |