Updated Makefile for correct lib folder

RAYLIB_RELEASE_PATH already resolves to $(RAYLIB_PATH)/src, this should be $(RAYLIB_PATH)/lib for the Library search
This commit is contained in:
Pacadamian Motato 2023-11-29 20:08:00 +01:00 committed by GitHub
parent e7a486fa81
commit 023fa829e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,7 +271,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
endif
# Define library paths containing required libs.
LDFLAGS = -L. -L$(RAYLIB_RELEASE_PATH) -L$(RAYLIB_PATH)/src
LDFLAGS = -L. -L$(RAYLIB_RELEASE_PATH) -L$(RAYLIB_PATH)/lib
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),BSD)