summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a24ca4b..f441681 100644
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ MKDIR = mkdir -p
${OBJS_DIR}%.o: ${SRCS_DIR}%.c inc/minishell.h libft/libft.h
- ${MKDIR} ${OBJS_DIR}
+ @${MKDIR} ${OBJS_DIR}
${CC} ${CFLAGS} ${DEBUG} ${INCS_DIR} -o $@ -c $<
$(NAME): ${OBJS}