summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 16:29:20 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 16:29:20 +0200
commit58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3 (patch)
treed43399d8ac6ce24496b86918496d57c37d628698 /Makefile
parentVery good redirs (diff)
download42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.tar.gz
42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.tar.bz2
42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.tar.xz
42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.tar.zst
42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.zip
Prepared builtins templates
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2970572..82e9194 100644
--- a/Makefile
+++ b/Makefile
@@ -15,11 +15,14 @@ LFT_SRCS_DIR = ${LFT_DIR}src/
#--------------------------------- FILES --------------------------------------#
#==============================================================================#
SRCS_NAME = minishell.c
+SRCS_NAME += ft_b_cd.c
SRCS_NAME += ft_b_echo.c
SRCS_NAME += ft_b_env.c
SRCS_NAME += ft_b_exit.c
SRCS_NAME += ft_b_export.c
-SRCS_NAME += ft_e_builtin.c
+SRCS_NAME += ft_b_pwd.c
+SRCS_NAME += ft_b_unset.c
+SRCS_NAME += ft_e_builtins.c
SRCS_NAME += ft_e_lcom.c
SRCS_NAME += ft_f_fail.c
SRCS_NAME += ft_f_file.c