aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2018-11-28 17:35:42 +0100
committerRay <raysan5@gmail.com>2018-11-28 17:35:42 +0100
commit874c0910e33a1762c06148f2b0ea58e107beb7de (patch)
treea291aca4b7e790efc83406117f2d845a1f86c61c /src
parentab0287bd4ed0e80afa8126d3e3960678ddad1c98 (diff)
downloadraylib-874c0910e33a1762c06148f2b0ea58e107beb7de.tar.gz
raylib-874c0910e33a1762c06148f2b0ea58e107beb7de.zip
Replaced default release paths
Diffstat (limited to 'src')
-rw-r--r--src/Makefile17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/Makefile b/src/Makefile
index fa9aeedb..d7a0156e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -179,33 +179,32 @@ ifeq ($(PLATFORM),PLATFORM_ANDROID)
endif
endif
-# RAYLIB_RELEASE_PATH points to provided binaries or your immediate build of raylib.
-# It is further modified below by PLATFORM below.
-RAYLIB_RELEASE_PATH ?= $(RAYLIB_PATH)/release/libs
+# RAYLIB_RELEASE_PATH points to library build path, right now
+RAYLIB_RELEASE_PATH ?= $(RAYLIB_PATH)/src
# Define output directory for compiled library
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
- RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)\release\libs\win32\mingw32
+ RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)\mingw\i686-w64-mingw32\lib
endif
ifeq ($(PLATFORM_OS),LINUX)
- RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/linux
+ RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/src
endif
ifeq ($(PLATFORM_OS),OSX)
- RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/osx
+ RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/src
endif
ifeq ($(PLATFORM_OS),BSD)
- RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/bsd
+ RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/src
endif
endif
ifeq ($(PLATFORM),PLATFORM_RPI)
- RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/rpi
+ RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/src
endif
ifeq ($(PLATFORM),PLATFORM_WEB)
RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/src
endif
ifeq ($(PLATFORM),PLATFORM_ANDROID)
- RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/android/$(ANDROID_ARCH_NAME)
+ RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/src/android/$(ANDROID_ARCH_NAME)
endif
# Define raylib graphics api depending on selected platform