summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-05-15 12:36:00 +0200
committerGitHub2024-05-15 12:36:00 +0200
commit012afb95fd1cb5c7e625b4b023c98573c0e0499f (patch)
treee76d37b1d416f0405a7267a38d184eca32ad1bd8 /Makefile
parent7b021c4426f21bf20fed61459ddedb5224e25bc4 (diff)
parented5342399d02ba5d1032a2ef99afdc1c875ed4d8 (diff)
downloadso_long-012afb95fd1cb5c7e625b4b023c98573c0e0499f.tar.gz
so_long-012afb95fd1cb5c7e625b4b023c98573c0e0499f.zip
Merge collision into master
Collision
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 763c897..51de300 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,8 @@ HEADERS = -Iinclude -Ilibft -IMLX42/include
LIBS = -Llibft -lft -lm -LMLX42/build -lmlx42 -ldl -lglfw -pthread
VPATH := src
-SRC = main.c init.c loop.c input.c draw.c tilemap.c
+SRC = main.c init.c loop.c input.c draw.c tilemap.c player_process.c \
+ collision.c map_utils.c
OBJ_DIR := obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))