summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-10-13 23:08:10 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-10-13 23:08:10 +0200
commitdeeb4a54729d184b3c96e8ab6f5564ef522fa85d (patch)
tree4983bbc6ddbd786e749ab069fb66d1f47f1a88dc /Makefile
parentAdded vim stuff to .gitignore (diff)
download42-minishell-deeb4a54729d184b3c96e8ab6f5564ef522fa85d.tar.gz
42-minishell-deeb4a54729d184b3c96e8ab6f5564ef522fa85d.tar.bz2
42-minishell-deeb4a54729d184b3c96e8ab6f5564ef522fa85d.tar.xz
42-minishell-deeb4a54729d184b3c96e8ab6f5564ef522fa85d.tar.zst
42-minishell-deeb4a54729d184b3c96e8ab6f5564ef522fa85d.zip
Removed trailing whitespaces
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ced56f2..fa8899f 100644
--- a/Makefile
+++ b/Makefile
@@ -141,7 +141,7 @@ LFTRULE = all
#------------------------------------------------------------------------------#
${OBJS_DIR}%.o: ${SRCS_DIR}%.c ${INCS}
@${MKDIR} ${OBJS_DIR}
- ${CC} -c ${CFLAGS} ${CDEFS} -I${LFT_INCS_DIR} -o $@ $<
+ ${CC} -c ${CFLAGS} ${CDEFS} -I${LFT_INCS_DIR} -o $@ $<
#------------------------------------------------------------------------------#
$(NAME): ${OBJS} ${LFT_SRCS} ${LFT_INCS_DIR}libft.h
@$(MAKE) --no-print-directory -C ${LFT_DIR} ${LFTRULE}
@@ -166,7 +166,7 @@ msan: CFLAGS += -fno-omit-frame-pointer
msan: LFTRULE = msan
msan: all
#------------------------------------------------------------------------------#
-clean:
+clean:
@$(MAKE) --no-print-directory -C ${LFT_DIR} clean
${RM} ${OBJS_DIR} vgcore*
#------------------------------------------------------------------------------#