summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRudy Bousset <rbousset@z2r5p6.le-101.fr>2019-10-30 16:32:46 +0100
committerRudy Bousset <rbousset@z2r5p6.le-101.fr>2019-10-30 16:32:46 +0100
commit27ea0240a97d0745dda0f87940bfe5940f9c594c (patch)
treeb64a14ea7c3a8091c8127df3a3f2ed11060f08b4 /Makefile
parentNew libft, feelsgoodman (diff)
download42-minishell-27ea0240a97d0745dda0f87940bfe5940f9c594c.tar.gz
42-minishell-27ea0240a97d0745dda0f87940bfe5940f9c594c.tar.bz2
42-minishell-27ea0240a97d0745dda0f87940bfe5940f9c594c.tar.xz
42-minishell-27ea0240a97d0745dda0f87940bfe5940f9c594c.tar.zst
42-minishell-27ea0240a97d0745dda0f87940bfe5940f9c594c.zip
work work
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f441681..46fce04 100644
--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,10 @@ SRCS_DIR = src/
SRCS = \
${SRCS_DIR}main.c \
${SRCS_DIR}ft_process_arg.c \
+ ${SRCS_DIR}ft_error.c \
${SRCS_DIR}ft_echo.c \
- ${SRCS_DIR}ft_pwd.c
+ ${SRCS_DIR}ft_pwd.c \
+ ${SRCS_DIR}ft_exit.c
OBJS_DIR = obj/
OBJS = $(patsubst ${SRCS_DIR}%.c,${OBJS_DIR}%.o,${SRCS})