aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-11-24 17:56:43 +0000
committerzedarider <ymherklotz@gmail.com>2016-11-24 17:56:43 +0000
commit44bcbd77f83baf64dc57ae8f816492194da7aa87 (patch)
treecdcb44db021536b203fa3951f6afe2eef33a7ad3 /Makefile
parentbea3f2ee3a313049c3513b3eedf5cb6519f19729 (diff)
parent95f75aa7aacf5e0e1ef11e8d200f84de44bd891f (diff)
downloadChessAI-44bcbd77f83baf64dc57ae8f816492194da7aa87.tar.gz
ChessAI-44bcbd77f83baf64dc57ae8f816492194da7aa87.zip
final changes from mac
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1612948..ccca428 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,11 @@ TARGET := bin/chess_ai
SRCEXT := cpp
SOURCES := $(shell find $(SRCDIR) -type f -name "*.$(SRCEXT)")
OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.o))
+<<<<<<< HEAD
CFLAGS := -g -Wall -Wextra -std=c++14
+=======
+CFLAGS := -g -Wall -Wextra -Wpedantic -std=c++14
+>>>>>>> 95f75aa7aacf5e0e1ef11e8d200f84de44bd891f
LIB :=
INC := -I include