summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-05-11 16:46:09 +0200
committerGitHub2024-05-11 16:46:09 +0200
commit7b021c4426f21bf20fed61459ddedb5224e25bc4 (patch)
tree7115ef51d858fe2275c7402a46716f66906fb2f4 /Makefile
parent18c61f3119e468e9a9418aef8aaeadcef090895c (diff)
parent796108c1ebe5085da626ab82e5866ce5ec1383c2 (diff)
downloadso_long-7b021c4426f21bf20fed61459ddedb5224e25bc4.tar.gz
so_long-7b021c4426f21bf20fed61459ddedb5224e25bc4.zip
Merge map-input into master
Read map input from file and display on screen TODO: Display Collectibles and Exit
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))