From b3028e4891083c077236df437011184b16b6d293 Mon Sep 17 00:00:00 2001 From: Peter0x44 Date: Sun, 22 Oct 2023 18:45:49 +0100 Subject: [PATCH] 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 --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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