aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-09-30 19:01:53 +1000
committerquou <quou@disroot.org>2024-09-30 19:01:53 +1000
commit7664fdafb9a6d6f4aa3339fe38958b24b234218e (patch)
treea1b1879403eab088aee66c091e476d407fe35402 /Makefile
parent98322a86ec78f732a5a6750a1e93061269cc76a7 (diff)
player slashing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4c755b9..74ad6e3 100644
--- a/Makefile
+++ b/Makefile
@@ -49,16 +49,19 @@ sources = \
map.c \
maths.c \
memory.c \
+ particle.c \
physics.c \
plat.c \
player.c \
rect.c \
render.c \
+ world.c \
image_sources = \
+ $(int_dir)/arms.bmp \
$(int_dir)/guy.bmp \
$(int_dir)/map.bmp \
- $(int_dir)/mask.bmp
+ $(int_dir)/mask.bmp \
anim_sources = \
$(int_dir)/guy_fall_left.anm \
@@ -69,6 +72,8 @@ anim_sources = \
$(int_dir)/guy_jump_right.anm \
$(int_dir)/guy_run_left.anm \
$(int_dir)/guy_run_right.anm \
+ $(int_dir)/slash_right.anm \
+ $(int_dir)/slash_left.anm \
objects = $(sources:%.c=%.o)
images = $(image_sources:$(int_dir)/%.bmp=$(data_dir)/%.img)