diff options
| author | Tomas S <[email protected]> | 2021-12-16 17:10:13 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-16 17:10:13 +0100 |
| commit | 87fa23beee3e62e4745749006ecdcbb511d6abc9 (patch) | |
| tree | 2ce4df09c4b93e3410ca4fa297f1b9d465c68438 /src/Makefile | |
| parent | 51c929ef21be82a1fae1744f110e82896afd3d7c (diff) | |
| download | raylib-87fa23beee3e62e4745749006ecdcbb511d6abc9.tar.gz raylib-87fa23beee3e62e4745749006ecdcbb511d6abc9.zip | |
Fix build results path on Linux and RPi (#2218)
Built files should be put into src/ not into the project root
as it was now on these platforms
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Makefile b/src/Makefile index 5ee9343e..c25bde0a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -144,16 +144,6 @@ ifeq ($(PLATFORM),PLATFORM_DRM) endif endif -# RAYLIB_SRC_PATH adjustment for different platforms. -# If using GNU make, we can get the full path to the top of the tree. Windows? BSD? -# Required for ldconfig or other tools that do not perform path expansion. -ifeq ($(PLATFORM), $(filter $(PLATFORM),PLATFORM_DESKTOP PLATFORM_RPI)) - ifeq ($(PLATFORM_OS),LINUX) - RAYLIB_PREFIX ?= .. - RAYLIB_SRC_PATH = $(realpath $(RAYLIB_PREFIX)) - endif -endif - ifeq ($(PLATFORM),PLATFORM_WEB) # Emscripten required variables EMSDK_PATH ?= C:/emsdk |
