summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2021-05-10 19:46:22 +0800
committerIru Cai <mytbk920423@gmail.com>2021-05-10 19:56:24 +0800
commitd7620b8069cc098e317f6bdaa2d05b8a36db4c61 (patch)
tree68801f8c61a48134e6dd0e662b962f9692c2d2b0
parent05bfcbae9cbe9db4797ef2703c4d37f511608fe6 (diff)
downloadrich4-d7620b8069cc098e317f6bdaa2d05b8a36db4c61.tar.xz
add make clean
-rw-r--r--asm/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/asm/Makefile b/asm/Makefile
index 410fa8f..f4e1bd9 100644
--- a/asm/Makefile
+++ b/asm/Makefile
@@ -15,3 +15,8 @@ rich4.exe: $(OBJS)
%.obj: %.c
$(CC) $(CFLAGS) -c -o $@ $<
+
+.PHONY: clean
+
+clean:
+ rm -f rich4.exe $(OBJS)