summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-05-20 19:05:11 -0700
committerMichael Pavone <pavone@retrodev.com>2015-05-20 19:05:11 -0700
commit863ea0b3f8b8879ac3092f391a68dc95d0d04de2 (patch)
tree51a87b4b49eb235fff95efee88dbed27eaba3878 /Makefile
parent265a11e776d9708483024f48a9e0eaaf6686d00b (diff)
Upgrade to SDL 2.0 and drop support for the non-OpenGL render path
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 784ac8f..6ddcd52 100644
--- a/Makefile
+++ b/Makefile
@@ -2,14 +2,10 @@ ifndef OS
OS:=$(shell uname -s)
endif
-ifdef NOGL
-LIBS=sdl
-else
ifeq ($(OS),Darwin)
-LIBS=sdl glew
+LIBS=sdl2 glew
else
-LIBS=sdl glew gl
-endif
+LIBS=sdl2 glew gl
endif
ifdef DEBUG