summaryrefslogtreecommitdiffhomepage
path: root/src/Makefile
diff options
context:
space:
mode:
authorRay <[email protected]>2021-09-22 11:13:10 +0200
committerRay <[email protected]>2021-09-22 11:13:10 +0200
commitc1432386a5ddad1784a6cacaf1e8d5a96a5388b2 (patch)
treee1a798f9d73272031ae2ec1aa265796fd0e48f2a /src/Makefile
parentb5f281bacd3b843045e84b23eff3de5a22133aae (diff)
downloadraylib-c1432386a5ddad1784a6cacaf1e8d5a96a5388b2.tar.gz
raylib-c1432386a5ddad1784a6cacaf1e8d5a96a5388b2.zip
Update Makefile
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile
index 2be86e78..cdf37fc3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -443,10 +443,10 @@ endif
# OBJS = $(patsubst %.c, %.o, $(wildcard *.c))
# Define object required on compilation
-OBJS = core.o \
- shapes.o \
- textures.o \
- text.o \
+OBJS = rcore.o \
+ rshapes.o \
+ rtextures.o \
+ rtext.o \
utils.o
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
@@ -455,7 +455,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
endif
endif
ifeq ($(RAYLIB_MODULE_MODELS),TRUE)
- OBJS += models.o
+ OBJS += rmodels.o
endif
ifeq ($(RAYLIB_MODULE_AUDIO),TRUE)
OBJS += raudio.o