Browse Source

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
pull/3429/head
Peter0x44 1 year ago
committed by GitHub
parent
commit
859c67792a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      src/Makefile

+ 3
- 0
src/Makefile View File

@ -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)

Loading…
Cancel
Save