aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-20 23:19:06 +0100
committerCharles <sircharlesaze@gmail.com>2020-03-20 23:19:06 +0100
commit43cdfd38bc27fe96105b48d980799f3b2fdd8f0f (patch)
tree9c654440614f1dbd626d5d139f3a1f46a7ce5c3a /Makefile
parent64f6f1eaa2ecc188292cfe4a7223606b8bcb3bf2 (diff)
download2048-43cdfd38bc27fe96105b48d980799f3b2fdd8f0f.tar.gz
2048-43cdfd38bc27fe96105b48d980799f3b2fdd8f0f.tar.bz2
2048-43cdfd38bc27fe96105b48d980799f3b2fdd8f0f.zip
c++98 complient and README update
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 681f96e..49d9ee6 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ INCDIR = include
OBJDIR = build
CXX = g++
-CXXFLAGS = -Wall -Wextra -I$(INCDIR) $(shell sdl2-config --cflags) -std=c++11
+CXXFLAGS = -Wall -Wextra -I$(INCDIR) $(shell sdl2-config --cflags) -std=c++98
LDFLAGS = $(shell sdl2-config --libs) -lSDL2_ttf
SRC = $(shell find $(SRCDIR) -type f -name "*.cpp")