Correction: function names must be ft_*

This commit is contained in:
lalgarra 2025-10-03 21:21:01 +02:00
parent 81f932f0be
commit 6b7a5d0ffb
12 changed files with 27 additions and 23 deletions

View file

@ -6,7 +6,7 @@
# By: lalgarra <lalgarra@student.42madrid.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2025/10/03 18:03:12 by lalgarra #+# #+# #
# Updated: 2025/10/03 18:50:51 by lalgarra ### ########.fr #
# Updated: 2025/10/03 21:16:37 by lalgarra ### ########.fr #
# #
# **************************************************************************** #
@ -14,10 +14,13 @@
LIBDIR = ../repo_libft_algarra
#LIBDIR = ../repo_algarra
CFLAGS += -Wall -Wextra -Werror -g3 -iquote $(LIBDIR) -L$(LIBDIR) -lft
CFLAGS += -Wall -Wextra -Werror -g3 -iquote $(LIBDIR)
TESTS:= isalpha_test isdigit_test isalnum_test isascii_test \
isprint_test
TESTS := ft_isalpha_test ft_isdigit_test ft_isalnum_test ft_isascii_test \
ft_isprint_test
%_test : %_test.c
$(CC) $(CFLAGS) $*_test.c -L$(LIBDIR) -lft -o $*_test
%_actual.output : %_test
@./$*_test > ./$*_actual.output ;