aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 90a09d7..c0773e3 100644
--- a/Makefile
+++ b/Makefile
@@ -58,6 +58,7 @@ SRCS_NAME += ft_draw_textures.c
SRCS_NAME += ft_key_release.c
SRCS_NAME += ft_convert_keycode.c
SRCS_NAME += ft_key_loop.c
+SRCS_NAME += ft_draw_sprite.c
#--------------------------------------------------------------------------------------------------#
SRCS = $(addprefix ${SRCS_DIR},${SRCS_NAME})
#--------------------------------------------------------------------------------------------------#
@@ -151,14 +152,14 @@ endif
@$(MAKE) --no-print-directory -C ${LFT_DIR} clean
${RM} ${OBJS_DIR}
#--------------------------------------------------------------------------------------------------#
-fclean: clean
+fclean: clean
@$(MAKE) --no-print-directory -C ${LFT_DIR} fclean
${RM} ${NAME}
${RM} ${NAME}.dSYM
#--------------------------------------------------------------------------------------------------#
re: fclean all
#--------------------------------------------------------------------------------------------------#
-run: all
+run: all
@./${NAME} "map/map_one.cub"
#--------------------------------------------------------------------------------------------------#
.PHONY: all clean clean fclean re run default