summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2023-11-05 20:12:00 +0100
committerRay <[email protected]>2023-11-05 20:12:00 +0100
commita470cdce4c3d77e543d90a5fc2aab05e8d41b51b (patch)
tree05471932931c3badf94333f23015ef3026f0885e /src
parent2a67ac0027c004eb37a470f9dd304037f5987ad1 (diff)
parent343e92322bac845511651dc6e15a2e16fdeb94c1 (diff)
downloadraylib-a470cdce4c3d77e543d90a5fc2aab05e8d41b51b.tar.gz
raylib-a470cdce4c3d77e543d90a5fc2aab05e8d41b51b.zip
Merge branch 'master' of https://github.com/raysan5/raylib
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)