From 0783aa99d760d31609f76bb9b2c5e23988e2d11e Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Tue, 11 Jul 2023 13:33:01 +0200 Subject: [PATCH] zipl/boot: simplify clean target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Simplify the clean target since there are several redundant things (*.bin) and files that aren't built at all (.xxx and .yyy). Reviewed-by: Steffen Eiden Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- zipl/boot/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zipl/boot/Makefile b/zipl/boot/Makefile index 641384b2..9ca9717e 100644 --- a/zipl/boot/Makefile +++ b/zipl/boot/Makefile @@ -85,7 +85,6 @@ stage3.exec: head.o stage3.o kdump3.o libc.o ebcdic.o ebcdic_conv.o sclp.o \ clean: - rm -f -- *.o *.exec *.bin $(FILES) tape0.bin *.xxx *.yyy \ - stage3.bin *.lds .*.lds.d .loaders *.debug + rm -f -- *.o *.exec *.bin *.lds .*.lds.d .loaders *.debug .PHONY: all clean