From: Dominik Kaiser Date: Fri, 10 May 2024 10:24:33 +0000 (+0200) Subject: Update Include path X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=461f71e2660e6286ffc757ca6b7077c70c80b6cf;p=42%2Fso_long.git Update Include path --- diff --git a/Makefile b/Makefile index d851d7b..4ce3ecf 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,9 @@ OBJ_DIR := obj OBJ := $(addprefix $(OBJ_DIR)/, $(SRC:%.c=%.o)) -all: $(NAME) +all: libmlx $(NAME) -$(NAME): $(OBJ) | libft libmlx +$(NAME): $(OBJ) | libft @$(CC) $(CFLAGS) $(HEADERS) $^ -o $@ $(LIBS) @echo "[$(NAME)] Created binary." diff --git a/include/so_long.h b/include/so_long.h index b2bf7d7..7365a30 100644 --- a/include/so_long.h +++ b/include/so_long.h @@ -6,7 +6,7 @@ /* By: dkaiser