This commit is contained in:
Camille Chauvet 2023-01-20 14:41:52 +01:00
parent d6117cfb8f
commit a241d049c4

View File

@ -1,3 +1,15 @@
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/01/20 14:41:36 by cchauvet #+# #+# #
# Updated: 2023/01/20 14:41:42 by cchauvet ### ########.fr #
# #
# **************************************************************************** #
SRCS = mandatory/asset.c mandatory/draw.c mandatory/key.c mandatory/main.c mandatory/map.c mandatory/parsing2.c mandatory/parsing.c mandatory/xpm.c
BSRCS = bonus/asset.c bonus/draw.c bonus/key.c bonus/main.c bonus/map.c bonus/parsing2.c bonus/parsing.c bonus/xpm.c
@ -12,7 +24,7 @@ LIBS = libftx/libftx.a minilibx-linux/libmlx.a
CC = clang
FLAG = -Wall -Wextra -Werror -g
FLAG = -Wall -Wextra -Werror
%.o: %.c
${CC} ${FLAG} -c $< -o $@