diff options
| author | Peter0x44 <[email protected]> | 2023-10-22 18:45:49 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-22 19:45:49 +0200 |
| commit | b3028e4891083c077236df437011184b16b6d293 (patch) | |
| tree | d84cd4f44fa4af651db4f8455be660a3cb36fd40 /src/Makefile | |
| parent | e33e9da277865207123158430ebf42cc5626e5b7 (diff) | |
| download | raylib-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
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 2 |
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 |
