summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-05-10 15:53:31 +0200
committerDominik Kaiser2024-05-10 15:53:31 +0200
commit69765e686473bbd920221eda728b2cb83a6e516d (patch)
treec5cb3c2cc9e0c76a7c2fe36907a84f1048ecb834 /Makefile
parent18c61f3119e468e9a9418aef8aaeadcef090895c (diff)
downloadso_long-69765e686473bbd920221eda728b2cb83a6e516d.tar.gz
so_long-69765e686473bbd920221eda728b2cb83a6e516d.zip
Add tilemap.c and read map size
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6f4e2c8..763c897 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ 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
+SRC = main.c init.c loop.c input.c draw.c tilemap.c
OBJ_DIR := obj
OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o))