mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-05 19:08:13 +00:00
Make sure rcore.o gets compiled in more situations (#3423)
Currently doing the following: ``` make touch rcore_desktop.c make ``` Will not result in rcore.o getting compiled again, despite that rcore_desktop.c has changed This commit resolves that
This commit is contained in:
@@ -632,6 +632,9 @@ endif
|
||||
|
||||
# Compile all modules with their prerequisites
|
||||
|
||||
# Prerequisites of core module
|
||||
rcore.o : rcore_android.c rcore_desktop.c rcore_drm.c rcore_template.c rcore_web.c
|
||||
|
||||
# Compile core module
|
||||
rcore.o : rcore.c raylib.h rlgl.h utils.h raymath.h rcamera.h rgestures.h
|
||||
$(CC) -c $< $(CFLAGS) $(INCLUDE_PATHS)
|
||||
|
Reference in New Issue
Block a user