From 48b2e0ecd35f736ac3c6a1a65e75bd36dd4576f0 Mon Sep 17 00:00:00 2001 From: legends1307 Date: Mon, 19 Jan 2026 15:24:34 +0530 Subject: [PATCH] Fix incomplete clean target in 02/Makefile --- 02/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02/Makefile b/02/Makefile index 5ff327c..dc8ddbf 100644 --- a/02/Makefile +++ b/02/Makefile @@ -47,4 +47,4 @@ CFLAGS=-fcf-protection=none -fno-asynchronous-unwind-tables -m32 -fno-pie -no-pi objdump -d 02.o > 02.dump clean: - rm *.o *.s *.dump + rm -f *.o *.s *.dump 02.main