aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 527e934..9ba87b3 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,6 @@ tetris: tetris.o plot.o
clean:
rm -f tetris
- find -name "*.o" -delete
+ find . -name "*.o" -exec rm "{}" \;
.PHONY: all clean