summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2018-12-08 14:20:11 +0100
committerNao Pross <naopross@thearcway.org>2018-12-08 14:20:11 +0100
commit2a65d67d12c269cbf6bd520081ef5c5e8f02f91e (patch)
tree5518c08a0ec4416a518564914fb3873ed061d222
parentInitial commit with kinda crappy unnumbered examples (diff)
downloadcplusplus-2a65d67d12c269cbf6bd520081ef5c5e8f02f91e.tar.gz
cplusplus-2a65d67d12c269cbf6bd520081ef5c5e8f02f91e.zip
Add -Werror flag for compilation
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 823954d..230e975 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,5 @@
CPP := g++
-CPP_ARGS := -Wall -g -I.
+CPP_ARGS := -Wall -Werror -I.
LD_ARGS :=
BINARIES := $(patsubst %.cpp, build/%, $(wildcard *.cpp))