diff --git a/Makefile b/Makefile index c0054db..28dde65 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: lalgarra +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2025/10/03 18:03:12 by lalgarra #+# #+# # -# Updated: 2025/10/03 18:33:44 by lalgarra ### ########.fr # +# Updated: 2025/10/03 18:50:51 by lalgarra ### ########.fr # # # # **************************************************************************** # @@ -23,7 +23,8 @@ TESTS:= isalpha_test isdigit_test isalnum_test isascii_test \ @./$*_test > ./$*_actual.output ; %_report : %_test %_actual.output - -(diff -a $*_expected.output $*_actual.output && echo "Test OK") > $*_report + -(diff -a $*_expected.output $*_actual.output \ + && echo "Test OK") > $*_report EXES = $(TESTS)