From ba736a3800ae5235426176e2e55fd49cf17ce32d Mon Sep 17 00:00:00 2001 From: Akira Tsukamoto Date: Tue, 15 Jun 2021 22:40:23 +0900 Subject: [PATCH] Fix: remove all binaries after clean Signed-off-by: Akira Tsukamoto --- build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index 5b37d1e..46e3921 100755 --- a/build/Makefile +++ b/build/Makefile @@ -82,4 +82,4 @@ $(TARGET).elf:$(OBJECTLIST) .PHONY: clean clean: - rm -f ../*/*.o $(TARGET).bin $(TARGET).bin.out $(TARGET).elf $(TARGET).asm *.map + rm -f $(OBJECTLIST) *.bin *.bin.out *.elf *.asm *.map