summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorJupiterRider <[email protected]>2023-11-05 19:42:56 +0100
committerGitHub <[email protected]>2023-11-05 19:42:56 +0100
commit2252f747b734e3f5f9b78a46aa1c8e667c44ab0c (patch)
tree0cff2265264f589c3635a5804ff23607b19b855b /src
parent925978ffde371d5cc1b049d8cf7b861ebd6bb2b5 (diff)
downloadraylib-2252f747b734e3f5f9b78a46aa1c8e667c44ab0c.tar.gz
raylib-2252f747b734e3f5f9b78a46aa1c8e667c44ab0c.zip
Update Makefile (#3509)
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 7bcece7c..2ee0c5a0 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -602,7 +602,7 @@ ifeq ($(PLATFORM),PLATFORM_WEB)
@echo "raylib library generated (lib$(RAYLIB_LIB_NAME).a)!"
else
ifeq ($(RAYLIB_LIBTYPE),SHARED)
- ifeq ($(PLATFORM),PLATFORM_DESKTOP)
+ ifeq ($(PLATFORM),$(filter $(PLATFORM),PLATFORM_DESKTOP PLATFORM_DESKTOP_SDL))
ifeq ($(PLATFORM_OS),WINDOWS)
# NOTE: Linking with provided resource file
$(CC) -shared -o $(RAYLIB_RELEASE_PATH)/$(RAYLIB_LIB_NAME).dll $(OBJS) $(RAYLIB_RES_FILE) $(LDFLAGS) $(LDLIBS)