From d82a1f9fa0b57f4598ff5986982b66146aea7df3 Mon Sep 17 00:00:00 2001 From: Kugel Fuhr <98353208+kugelfuhr@users.noreply.github.com> Date: Wed, 9 Jul 2025 13:35:27 +0200 Subject: [PATCH] Apply changes by @mrduz. Fixes an error in the makefile and adjusts the mostlyclean target accordingly. --- targettest/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targettest/Makefile b/targettest/Makefile index ac4c4e0ac..edcc2bee8 100644 --- a/targettest/Makefile +++ b/targettest/Makefile @@ -56,7 +56,7 @@ ifdef QUIET PQ = "QUIET=1" PD = --no-print-directory ifndef CMD_EXE - CATERR = 2> $$@.errlog || (cat $$@.errlog && false) + CATERR = 2> $@.errlog || (cat $@.errlog && false) endif endif @@ -967,7 +967,7 @@ testcode.atr: testcode # Clean-up rules mostlyclean: - @$(DEL) .errlog *.lbl *.map *.o 2>$(NULLDEV) + @$(DEL) *.errlog *.lbl *.map *.o 2>$(NULLDEV) # we cant use .s since we have asm files in the directory that we want to keep @$(DEL) ${patsubst %.c,%.s,$(wildcard *.c)} 2>$(NULLDEV)