From 4428e477ae27e8634715610649b68919810dd684 Mon Sep 17 00:00:00 2001 From: zedarider Date: Sun, 6 Nov 2016 19:54:43 +0000 Subject: fixed makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3c0f9e7..1612948 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 +CFLAGS := -g -Wall -Wextra -std=c++14 LIB := INC := -I include -- cgit