aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-13 17:48:17 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-13 17:48:17 +0200
commit9ef012a8016b81fc6063c4fc9e861a22b5bd5dac (patch)
tree8b521658ca3f9e31e176b2cc2efa1cb601dc82c9 /Makefile
parente63d7878ad5d5ad7ceec11e1e8ac79aced93fbc0 (diff)
downloadminishell-9ef012a8016b81fc6063c4fc9e861a22b5bd5dac.tar.gz
minishell-9ef012a8016b81fc6063c4fc9e861a22b5bd5dac.tar.bz2
minishell-9ef012a8016b81fc6063c4fc9e861a22b5bd5dac.zip
Added SHLVL increment, PATH add /sbin if not present
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d0496bf..ccf5433 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/02/03 04:14:24 by cacharle #+# #+# #
-# Updated: 2020/06/17 16:26:19 by charles ### ########.fr #
+# Updated: 2020/09/13 16:02:22 by charles ### ########.fr #
# #
# **************************************************************************** #
@@ -52,7 +52,7 @@ $(NAME): $(OBJ)
$(OBJDIR)/%.o: $(SRCDIR)/%.c $(INCLUDE)
@echo "Compiling: $@"
- @$(CC) $(CCFLAGS) -c -o $@ $<
+ @$(CC) $(CCFLAGS) $(MINISHELL_TEST_FLAGS) -c -o $@ $<
.PHONY: clean
clean: libft_clean