aboutsummaryrefslogtreecommitdiff
path: root/templates/basic_test/Makefile
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2016-05-17 00:10:28 +0200
committerRay <raysan5@gmail.com>2016-05-17 00:10:28 +0200
commitd84f922372622276caab0764ae209decc39a8bdb (patch)
tree66ae60eb7034a732506fe9034f9feb91800f652c /templates/basic_test/Makefile
parente060944b34f11978392f5c24282c95781caae63e (diff)
parentf575935ace109149277a57f6216c5df1b94eeac9 (diff)
downloadraylib-d84f922372622276caab0764ae209decc39a8bdb.tar.gz
raylib-d84f922372622276caab0764ae209decc39a8bdb.zip
Merge pull request #114 from cHemingway/osx-fixes
Fix building examples on OSX
Diffstat (limited to 'templates/basic_test/Makefile')
-rw-r--r--templates/basic_test/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/basic_test/Makefile b/templates/basic_test/Makefile
index b08aacdf..b6fd44a7 100644
--- a/templates/basic_test/Makefile
+++ b/templates/basic_test/Makefile
@@ -108,7 +108,10 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),LINUX)
LFLAGS = -L. -L../../src
else
- LFLAGS = -L. -L../../src -LC:/raylib/raylib/src
+ LFLAGS = -L. -L../../src
+ ifeq ($(PLATFORM_OS),WINDOWS)
+ LFLAGS += -LC:/raylib/raylib/src
+ endif
# external libraries to link with
# GLFW3
LFLAGS += -L../../external/glfw3/lib/$(LIBPATH)
@@ -133,7 +136,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