aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortwinaphex2017-08-17 02:54:33 +0200
committertwinaphex2017-08-17 02:54:33 +0200
commitd595f1eb9ff6cdb999636d90821d38953dcb7240 (patch)
tree34a5aa6ccddcf40adf48ee00b5c6882ca3db5189 /Makefile
parent4190c479e3dac18b9f8ed87a0002a41f93e8662c (diff)
downloadsnes9x2005-d595f1eb9ff6cdb999636d90821d38953dcb7240.tar.gz
snes9x2005-d595f1eb9ff6cdb999636d90821d38953dcb7240.tar.bz2
snes9x2005-d595f1eb9ff6cdb999636d90821d38953dcb7240.zip
Can't enable C89 for every target, we only need C89 right now
for MSVC
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files 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)