From 0ae5be6c6697f5f5f578a27c5ad9ba845aec43c9 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 9 May 2020 21:31:30 +0200 Subject: Added basic vector and matrix library --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1945278..ac009ed 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/05/09 10:24:52 by charles #+# #+# # -# Updated: 2020/05/09 10:38:27 by charles ### ########.fr # +# Updated: 2020/05/09 10:42:39 by charles ### ########.fr # # # # **************************************************************************** # @@ -21,7 +21,7 @@ INC_DIR = inc OBJ_DIR = obj CC = gcc -CCFLAGS = -I$(LIBFT_DIR)/include -I$(INCLUDE_DIR) \ +CCFLAGS = -I$(LIBFT_DIR)/include -I$(INC_DIR) \ -Wall -Wextra #-Werror LDFLAGS = -L$(LIBFT_DIR) -lft @@ -42,7 +42,7 @@ prebuild: $(NAME): $(OBJ) $(CC) -o $@ $^ $(LDFLAGS) -$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c +$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c $(INC) $(CC) $(CCFLAGS) -c -o $@ $< cleanloc: -- cgit