summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPeter0x44 <[email protected]>2023-10-22 18:45:49 +0100
committerGitHub <[email protected]>2023-10-22 19:45:49 +0200
commitb3028e4891083c077236df437011184b16b6d293 (patch)
treed84cd4f44fa4af651db4f8455be660a3cb36fd40
parente33e9da277865207123158430ebf42cc5626e5b7 (diff)
downloadraylib-b3028e4891083c077236df437011184b16b6d293.tar.gz
raylib-b3028e4891083c077236df437011184b16b6d293.zip
Review prerequisites of rcore.c (#3453)
rcore_desktop_sdl.c was not present in the list of prerequisites this patch changes them to use a wildcard, so any other platforms added in future will be tracked properly
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index ea8bdd5e..c9094f09 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -633,7 +633,7 @@ endif
# Compile all modules with their prerequisites
# Prerequisites of core module
-rcore.o : platforms/rcore_android.c platforms/rcore_desktop.c platforms/rcore_drm.c platforms/rcore_template.c platforms/rcore_web.c
+rcore.o : platforms/*.c
# Compile core module
rcore.o : rcore.c raylib.h rlgl.h utils.h raymath.h rcamera.h rgestures.h