According to @ska42 this should've been fixed in #19, but this doesn't seem to be the case.

What I've been having to do so far is renaming all 9 bonus files to remove the _bonus suffix, and to also remove _bonus suffix from the hardcoded paths of the files in the Makefile (not allowed to use wildcards yet).
The deepthought file shows it errors when it searches for ft_lstnew.c, while it should fall back to ft_lstnew_bonus.c:
= Bonus_functions ==============================================================
= ft_lstnew_bonus.c ============================================================
$> norminette ft_lstnew_bonus.c | grep -E '(Error|Warning)'
$> clang -Wextra -Wall -Werror -g3 -fsanitize=address ft_lstnew.c main.c libft.a -o user_exe
clang: error: no such file or directory: '/Users/sbos/Evals/intra-uuid-479083c1-2738-490c-ae1f-f5457fb58ea4-3883824-1/libft-war-machine/dirlibft//ft_lstnew.c'
Here's my libft for reproducing my issue: libft-sbos.zip
According to @ska42 this should've been fixed in #19, but this doesn't seem to be the case.
What I've been having to do so far is renaming all 9 bonus files to remove the _bonus suffix, and to also remove _bonus suffix from the hardcoded paths of the files in the Makefile (not allowed to use wildcards yet).
The deepthought file shows it errors when it searches for
ft_lstnew.c, while it should fall back toft_lstnew_bonus.c:Here's my libft for reproducing my issue: libft-sbos.zip