diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-09-29 02:30:45 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-09-29 02:30:45 +0200 |
commit | ffaf7580f8eea5bfdc3e4b3ed025874808a5502f (patch) | |
tree | 66782a275c61c55d53bb17fd2c74fd62036a12dd /lib/Makefile | |
parent | 4b1fb6c3be9f810c1ddceddc6536f7687c23197d (diff) | |
download | matcha-threads-ffaf7580f8eea5bfdc3e4b3ed025874808a5502f.tar.gz matcha-threads-ffaf7580f8eea5bfdc3e4b3ed025874808a5502f.zip |
fix clean target
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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 |