diff Makefile @ 719:019d27995e32

Upgrade to SDL 2.0 and drop support for the non-OpenGL render path
author Michael Pavone <pavone@retrodev.com>
date Wed, 20 May 2015 19:05:11 -0700
parents 7ed1dbb48f61
children 15d9359fd771
line wrap: on
line diff
--- a/Makefile	Wed May 20 10:35:03 2015 -0700
+++ b/Makefile	Wed May 20 19:05:11 2015 -0700
@@ -2,14 +2,10 @@
 OS:=$(shell uname -s)
 endif
 
-ifdef NOGL
-LIBS=sdl
+ifeq ($(OS),Darwin)
+LIBS=sdl2 glew
 else
-ifeq ($(OS),Darwin)
-LIBS=sdl glew
-else
-LIBS=sdl glew gl
-endif
+LIBS=sdl2 glew gl
 endif
 
 ifdef DEBUG