diff options
author | quou <quou@disroot.org> | 2024-09-30 22:13:31 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2024-09-30 22:13:31 +1000 |
commit | ee655819d44307d974fb27e1fa04d079a3810d63 (patch) | |
tree | faa7c7c833dab0ed83dece311576b53bd2e4b840 /Makefile | |
parent | de9a4fd93343d4654dfe7e2a566704644a9f306f (diff) |
enemy
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -46,6 +46,8 @@ sources = \ 1bitjam.c \ animation.c \ asset.c \ + deathzone.c \ + enemy.c \ map.c \ maths.c \ memory.c \ @@ -59,11 +61,20 @@ sources = \ image_sources = \ $(int_dir)/arms.bmp \ + $(int_dir)/npc.bmp \ $(int_dir)/guy.bmp \ $(int_dir)/map.bmp \ $(int_dir)/mask.bmp \ anim_sources = \ + $(int_dir)/demon_fly_left.anm \ + $(int_dir)/demon_fly_right.anm \ + $(int_dir)/demon_idle_left.anm \ + $(int_dir)/demon_idle_right.anm \ + $(int_dir)/demon_jump_left.anm \ + $(int_dir)/demon_jump_right.anm \ + $(int_dir)/demon_walk_left.anm \ + $(int_dir)/demon_walk_right.anm \ $(int_dir)/guy_fall_left.anm \ $(int_dir)/guy_fall_right.anm \ $(int_dir)/guy_idle_left.anm \ @@ -74,8 +85,8 @@ anim_sources = \ $(int_dir)/guy_run_right.anm \ $(int_dir)/guy_slash_left.anm \ $(int_dir)/guy_slash_right.anm \ - $(int_dir)/slash_right.anm \ $(int_dir)/slash_left.anm \ + $(int_dir)/slash_right.anm \ objects = $(sources:%.c=%.o) images = $(image_sources:$(int_dir)/%.bmp=$(data_dir)/%.img) |