From 2df0d3e47a9deb4676b4fd82a1924da4181ef9d9 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 10 Oct 2019 10:20:32 +0200 Subject: WIP: not getting last part if buff size too high --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 616c560..6cd00ec 100644 --- a/Makefile +++ b/Makefile @@ -6,17 +6,17 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/08 08:11:00 by cacharle #+# #+# # -# Updated: 2019/10/09 16:42:37 by cacharle ### ########.fr # +# Updated: 2019/10/10 09:56:42 by cacharle ### ########.fr # # # # **************************************************************************** # $(RM) = rm -f CC = gcc -CCFLAGS = -Wall -Wextra #-Werror -D BUFFER_SIZE=32 +CCFLAGS = -Wall -Wextra -Werror NAME = get_next_line -SRC = get_next_line.c get_next_line_utils.c +SRC = get_next_line.c get_next_line_utils.c main.c OBJ = $(SRC:.c=.o) INCLUDE = get_next_line.h @@ -25,7 +25,7 @@ all: $(NAME) $(NAME): $(OBJ) $(INCLUDE) $(CC) $(CCFLAGS) -o $(NAME) $(OBJ) -%.o: %.c +%.o: %.c $(INCLUDE) $(CC) $(CCFLAGS) -c -o $@ $< clean: -- cgit