aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-01 12:33:55 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-01 12:33:55 +0100
commita0f26d0407a2e514e9dcfd2baeef5ccd98f7b3dd (patch)
treefc919296727d6a6dc4eda868d143cb86017ed2bc /Makefile
parent57867bbbdc24b734d85f8d3569c7ad27dcd9504d (diff)
downloadcub3d-a0f26d0407a2e514e9dcfd2baeef5ccd98f7b3dd.tar.gz
cub3d-a0f26d0407a2e514e9dcfd2baeef5ccd98f7b3dd.tar.bz2
cub3d-a0f26d0407a2e514e9dcfd2baeef5ccd98f7b3dd.zip
texture selector, collision detection
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5b4222e..8df44eb 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,8 @@ SRCFILES = main.c \
render_state.c \
helper.c \
error.c \
- capture.c
+ capture.c \
+ texture.c
SRC = $(addprefix $(SRCDIR)/,$(SRCFILES))
$(info $(SRC))
OBJ = $(SRC:$(SRCDIR)/%.c=$(OBJDIR)/%.o)