aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-11 10:38:41 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-11 10:39:37 +0100
commit0dcba6ff7e68ed13f8e6caadd80b77506b917050 (patch)
tree16e1393115941b87ca50f04f1e37511f3f7bbdb5 /Makefile
parent988e058680280e25d345b17d840c3c6d40e30a76 (diff)
downloadcub3d-0dcba6ff7e68ed13f8e6caadd80b77506b917050.tar.gz
cub3d-0dcba6ff7e68ed13f8e6caadd80b77506b917050.tar.bz2
cub3d-0dcba6ff7e68ed13f8e6caadd80b77506b917050.zip
Hardcore refactoring
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 84a4fae..fbdfdb1 100644
--- a/Makefile
+++ b/Makefile
@@ -8,11 +8,9 @@ LDFLAGS = -L$(LIBFT_PATH) -lft \
-framework OpenGL -framework AppKit -lm
NAME = cub3D
-SRC = main.c event.c parse/parse.c parse/parse_east_texture.c \
- parse/parse_north_texture.c parse/parse_south_texture.c \
- parse/parse_west_texture.c parse/parse_ceilling_color.c \
- parse/parse_floor_color.c parse/parse_resolution.c \
- parse/parse_sprite_texture.c state.c vector.c render.c
+SRC = main.c event.c parse/parse.c parse/parse_textures.c \
+ parse/parse_color.c parse/parse_resolution.c \
+ state.c vector.c render.c helper.c error.c
OBJ = $(SRC:.c=.o)
INCLUDE = cub3d.h