separate declarations in libasm.h file and add list_push_front and list_size
This commit is contained in:
5
Makefile
5
Makefile
@ -11,7 +11,9 @@ SRCS_NAMES = ft_strlen.s\
|
||||
ft_read.s\
|
||||
ft_strdup.s
|
||||
|
||||
SRCS_BONUS_NAMES = ft_atoi_base.s
|
||||
SRCS_BONUS_NAMES = ft_atoi_base.s\
|
||||
ft_list_push_front.s\
|
||||
ft_list_size.s
|
||||
|
||||
SRCS = $(addprefix $(SRCS_DIR)/, $(SRCS_NAMES))
|
||||
SRCS_BONUS = $(addprefix $(SRCS_BONUS_DIR)/, $(SRCS_NAMES))
|
||||
@ -47,5 +49,6 @@ clean:
|
||||
|
||||
fclean: clean
|
||||
rm -f $(NAME) test
|
||||
rm -f libasm_bonus.a
|
||||
|
||||
.PHONY: fclean clean all
|
||||
|
Reference in New Issue
Block a user