aboutsummaryrefslogtreecommitdiff
path: root/templates/basic_game/Makefile
diff options
context:
space:
mode:
authorJoshua Reisenauer <kd7tck@msn.com>2016-05-19 15:31:56 -0700
committerJoshua Reisenauer <kd7tck@msn.com>2016-05-19 15:31:56 -0700
commit847944e24047cb3e2a2c6dfd6dfaa3667cf6f830 (patch)
tree0538b0b3b4fb1238cd66fd7c81f28a3c2c5bf1bc /templates/basic_game/Makefile
parentb10425492ac692d7c53001290e3d0b678df634b0 (diff)
parent8bbbe8cd76d93bc85810fd13a6cb6c4df18bd30d (diff)
downloadraylib-847944e24047cb3e2a2c6dfd6dfaa3667cf6f830.tar.gz
raylib-847944e24047cb3e2a2c6dfd6dfaa3667cf6f830.zip
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into newaudio
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)