From 49005573d3f6ee9123e827f71e694434b29251af Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 2 Aug 2020 16:48:18 +0200 Subject: Added sha1 and sha256 (not working) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 99f2709..0ebb7ab 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/02/03 20:14:50 by cacharle #+# #+# # -# Updated: 2020/07/27 15:01:57 by charles ### ########.fr # +# Updated: 2020/08/02 15:51:02 by charles ### ########.fr # # # # **************************************************************************** # @@ -21,7 +21,7 @@ OBJ_DIR = obj OBJ_SUBDIR = $(shell find $(SRC_DIR) -type d | sed 's/src/obj/') CC = gcc -CCFLAGS = -I$(LIBFT_DIR)/include -I$(INCLUDE_DIR) -Wall -Wextra #-Werror +CCFLAGS = -I$(LIBFT_DIR)/include -I$(INCLUDE_DIR) -Wall -Wextra -Wpedantic #-Werror LDFLAGS = -L$(LIBFT_DIR) -lft INCLUDE = $(shell find $(INCLUDE_DIR) -type f -name "*.h") -- cgit