From 83559a424435245412ca1a1fb4000f8283395732 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 7 Jun 2020 14:22:50 +0100 Subject: [PATCH] add make clean target to qemu_test Makefile --- src/soc/simulator/qemu_test/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/soc/simulator/qemu_test/Makefile b/src/soc/simulator/qemu_test/Makefile index 8c258b6f..88833cd4 100644 --- a/src/soc/simulator/qemu_test/Makefile +++ b/src/soc/simulator/qemu_test/Makefile @@ -5,6 +5,9 @@ AFLAGS=-mpwr9 all: kernel.bin +clean: + rm *.o *.elf *.bin + kernel.elf: test.o $(TOOLCHAIN)-ld $^ -o $@ -T memmap -- 2.30.2