summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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})