From d595f1eb9ff6cdb999636d90821d38953dcb7240 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 17 Aug 2017 02:54:33 +0200 Subject: Can't enable C89 for every target, we only need C89 right now for MSVC --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7bacd49..72f1f5c 100644 --- a/Makefile +++ b/Makefile @@ -260,9 +260,9 @@ else endif ifeq ($(DEBUG),1) - FLAGS += -O0 -g -std=c89 + FLAGS += -O0 -g else - FLAGS += -O2 -DNDEBUG -std=c89 + FLAGS += -O2 -DNDEBUG endif ifeq ($(PERF_TEST),1) -- cgit v1.2.3