aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-11-06 20:28:39 +0000
committerzedarider <ymherklotz@gmail.com>2016-11-06 20:28:39 +0000
commitf39a4463efa9deeaa6ec1f7986964f5baad784c2 (patch)
tree32be81647a2decb85c401ab84655caea01dcdffb /Makefile
parent4428e477ae27e8634715610649b68919810dd684 (diff)
downloadChessAI-f39a4463efa9deeaa6ec1f7986964f5baad784c2.tar.gz
ChessAI-f39a4463efa9deeaa6ec1f7986964f5baad784c2.zip
constructor is now default
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1612948..a3a4bfd 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ TARGET := bin/chess_ai
SRCEXT := cpp
SOURCES := $(shell find $(SRCDIR) -type f -name "*.$(SRCEXT)")
OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.o))
-CFLAGS := -g -Wall -Wextra -std=c++14
+CFLAGS := -g -Wall -Wextra -Wpedantic -std=c++14
LIB :=
INC := -I include