SRC= get_next_line.c \ main.c OBJ= $(SRC:.c=.o) NAME= getNextLine CFLAGS= -W -Wall -Wextra -Werror -g3 LDFLAGS=-g3 $(NAME): all all: $(OBJ) $(CC) $(OBJ) $(LDFLAGS) -o $(NAME) clean: $(RM) $(NAME) fclean: clean $(RM) $(OBJ) re: fclean all .PHONY: all clean fclean re