From cf1e7cbbd7d22a508d58e4c9021b2412182e639f Mon Sep 17 00:00:00 2001 From: Takumi Sueda Date: Wed, 10 Mar 2021 00:30:19 +0900 Subject: [PATCH] Update clean target --- x1/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x1/Makefile b/x1/Makefile index df6af8b..da0e12e 100644 --- a/x1/Makefile +++ b/x1/Makefile @@ -1,13 +1,14 @@ CROSS_COMPILE:=arm-linux-gnueabihf- AS:=$(CROSS_COMPILE)as CC:=$(CROSS_COMPILE)gcc +STRIP:=$(CROSS_COMPILE)strip .PHONY: all: return.bin mrc.bin c/main.bin .PHONY: clean: - @rm -f *.bin spray/*.bin c/*.bin injector/*.bin injector/*.elf + @rm -f *.bin spray/*.bin c/*.bin c/*.elf injector/*.bin injector/*.elf %.bin: %.S @$(AS) $<