From 81f932f0beb93f9c6488aa37888abeda1839daf0 Mon Sep 17 00:00:00 2001 From: lalgarra Date: Fri, 3 Oct 2025 18:52:39 +0200 Subject: [PATCH] adjusting line --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)