summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-10-17 14:21:56 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-10-17 14:21:56 -0700
commit3ac9555d8d8525c73257903023a818f27d4ef086 (patch)
tree9b0275e8a3e963635101bb8b0cf6c8b35c4b279c /Makefile
parent65df1ef955d009b6985841ababc48ab075155a37 (diff)
Enable a few more warnings
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dec5067..7fe7afa 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ EXECUTABLE=$(BUILD)/test
VERSION=$(shell sed -n 's/.*version \(.*\).*/\1/p' src/pugiconfig.hpp)
RELEASE=$(shell git ls-files src docs/*.html docs/*.css docs/samples docs/images scripts contrib readme.txt)
-CXXFLAGS=-g -Wall -Wextra -Werror -pedantic
+CXXFLAGS=-g -Wall -Wextra -Werror -Wpedantic -Wundef -Wshadow -Wold-style-cast -Wcast-align
LDFLAGS=
ifeq ($(config),release)