summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5d4a821..5c7b612 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,9 @@ SRCDIR := ./src
 BINDIR := ./build
 EXE := $(BINDIR)/blackshades
 
-CXXFLAGS := -O2 -Wall -g -I$(SRCDIR)
+CXXFLAGS := -O2 -Wall -Wextra -Wformat-security -Wduplicated-cond \
+            -Wfloat-equal -Wshadow -Wconversion -Wlogical-not-parentheses \
+            -Wnull-dereference -g -I$(SRCDIR)
 LDFLAGS := -lSDL -lGL -lGLU -lopenal -lalut -lvorbisfile
 
 SRCS := Camera.cpp \