aboutsummaryrefslogtreecommitdiff
path: root/templates/basic_game/Makefile
diff options
context:
space:
mode:
authorJoshua Reisenauer <kd7tck@msn.com>2016-05-16 19:54:03 -0700
committerJoshua Reisenauer <kd7tck@msn.com>2016-05-16 19:54:03 -0700
commitcd7f25830bcf1f1bdc2efcde8ec70759b8eac3fc (patch)
tree1b93a694de0babedbf23f884e75a098eca210c52 /templates/basic_game/Makefile
parent706755d1464bd65623755c6c2b4df931a37e9eb5 (diff)
parent0e29aa2951fe11e9d0fabec2182ed6309fce37bb (diff)
downloadraylib-cd7f25830bcf1f1bdc2efcde8ec70759b8eac3fc.tar.gz
raylib-cd7f25830bcf1f1bdc2efcde8ec70759b8eac3fc.zip
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'templates/basic_game/Makefile')
-rw-r--r--templates/basic_game/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/basic_game/Makefile b/templates/basic_game/Makefile
index 3b2a06d0..76337490 100644
--- a/templates/basic_game/Makefile
+++ b/templates/basic_game/Makefile
@@ -109,7 +109,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)