diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-23 16:29:20 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-23 16:29:20 +0200 |
commit | 58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3 (patch) | |
tree | d43399d8ac6ce24496b86918496d57c37d628698 /Makefile | |
parent | Very good redirs (diff) | |
download | 42-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-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |