summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5be0b78..580ca63 100644
--- a/Makefile
+++ b/Makefile
@@ -16,14 +16,15 @@ LFT_SRCS_DIR = ${LFT_DIR}src/
#==============================================================================#
SRCS_NAME = minishell.c
SRCS_NAME += ft_m_prompt.c
+SRCS_NAME += ft_m_loop.c
SRCS_NAME += ft_s_init.c
SRCS_NAME += ft_s_destroy.c
#------------------------------------------------------------------------------#
SRCS = $(addprefix ${SRCS_DIR}, ${SRCS_NAME})
#------------------------------------------------------------------------------#
-INCS_NAME = ft_s_struct.h
-INCS_NAME += ft_d_enum.h
+INCS_NAME = ft_d_enum.h
INCS_NAME += ft_d_define.h
+INCS_NAME += ft_s_struct.h
INCS_NAME += $(patsubst %.c,%.h,${SRCS_NAME})
#------------------------------------------------------------------------------#
INCS = $(addprefix ${SRCS_DIR}, ${INCS_NAME})