diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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}) |