separate declarations in libasm.h file and add list_push_front and list_size

This commit is contained in:
2025-04-03 04:55:28 +02:00
parent 394b016f2f
commit 34b139c60b
5 changed files with 126 additions and 10 deletions

View File

@ -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