From e837956e8ae8a51ae216e157fccc460942e55639 Mon Sep 17 00:00:00 2001 From: Peter0x44 Date: Sat, 14 Oct 2023 22:48:00 +0100 Subject: [PATCH] Make sure rcore.o gets compiled in more situations Currently doing the following: ``` make touch rcore_desktop.c make ``` Will not result in rcore.o getting compiled again, despite that rcore_desktop.c was changed --- src/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile b/src/Makefile index e75ae5368..13634e95e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -634,6 +634,7 @@ endif # Compile core module rcore.o : rcore.c raylib.h rlgl.h utils.h raymath.h rcamera.h rgestures.h +rcore.o : rcore_android.c rcore_desktop.c rcore_drm.c rcore_template.c rcore_web.c $(CC) -c $< $(CFLAGS) $(INCLUDE_PATHS) # Compile rglfw module