From 15bbf591e823abdc281331c96e827bf97f77c48c Mon Sep 17 00:00:00 2001 From: Manzovince Date: Thu, 18 Apr 2019 13:08:44 +0200 Subject: [PATCH] Makefile cleaned (ft instead of *.c) --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ccb26ed..876fac0 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: vmanzoni +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/03/01 13:24:35 by vmanzoni #+# #+# # -# Updated: 2019/04/16 16:39:00 by vmanzoni ### ########.fr # +# Updated: 2019/04/18 12:27:12 by vmanzoni ### ########.fr # # # # **************************************************************************** # @@ -15,7 +15,13 @@ NAME = fillit OBJ_DIR = objs./ HEADER = fillit.h -SRCS = *.c +SRCS = main.c \ + read_file.c \ + handle_errors.c \ + parse_input.c \ + get_smallest_square.c \ + print_fillit.c + OBJS = $(SRCS:.c=.o) LIB = libft/