aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorChris Hemingway <chris.hemingway@gmail.com>2016-05-13 23:01:48 +0100
committerChris Hemingway <chris.hemingway@gmail.com>2016-05-13 23:01:48 +0100
commitb62bbb78ed1ddf1b0cd7af150c715d440e78265e (patch)
treea519f17eb400524078c07826fc942edf123e0f1f /examples
parente060944b34f11978392f5c24282c95781caae63e (diff)
downloadraylib-b62bbb78ed1ddf1b0cd7af150c715d440e78265e.tar.gz
raylib-b62bbb78ed1ddf1b0cd7af150c715d440e78265e.zip
Fix building examples on OSX
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 74335fe8..534adee8 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -85,6 +85,8 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
# add standard directories for GNU/Linux
ifeq ($(PLATFORM_OS),LINUX)
INCLUDES = -I. -I../src -I/usr/local/include/raylib/
+ else ifeq ($(PLATFORM_OS),OSX)
+ INCLUDES = -I. -I../src
else
INCLUDES = -I. -I../../src -IC:/raylib/raylib/src
# external libraries headers
@@ -103,6 +105,8 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
# add standard directories for GNU/Linux
ifeq ($(PLATFORM_OS),LINUX)
LFLAGS = -L. -L../../src
+ else ifeq ($(PLATFORM_OS),OSX)
+ LFLAGS = -L. -L../src
else
LFLAGS = -L. -L../../src -LC:/raylib/raylib/src
# external libraries to link with
@@ -129,7 +133,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
# libraries for OS X 10.9 desktop compiling
# requires the following packages:
# libglfw3-dev libopenal-dev libegl1-mesa-dev
- LIBS = -lraylib -lglfw -framework OpenGL -framework OpenAl -framework Cocoa
+ LIBS = -lraylib -lglfw3 -framework OpenGL -framework OpenAl -framework Cocoa
else
# libraries for Windows desktop compiling
# NOTE: GLFW3 and OpenAL Soft libraries should be installed