From ffaf7580f8eea5bfdc3e4b3ed025874808a5502f Mon Sep 17 00:00:00 2001 From: johannst Date: Tue, 29 Sep 2020 02:30:45 +0200 Subject: fix clean target --- lib/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/Makefile b/lib/Makefile index 5ddabff..78b051e 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -22,4 +22,5 @@ libmatcha.a: thread.o executor.o \ $(AS) -c -o $@ $^ $(ASFLAGS) clean: - rm -f *.o **/*.o libmatcha.a + find . -name '*.o' -exec rm -f {} \; + rm -f libmatcha.a -- cgit v1.2.3