aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-12-22 20:36:08 +1300
committerDavid Phillips <david@sighup.nz>2017-12-22 20:36:08 +1300
commit2998246e1b15a09781ff892192992f696d5a6926 (patch)
treeed9e6334c7d9db3545912c82997f96e2eb02b43b /Makefile
parent9d1a2f26f24a814689a25f375d812e6e179369c8 (diff)
downloadtetris-2998246e1b15a09781ff892192992f696d5a6926.tar.xz
POSIX-ify makefile
Diffstat (limited to 'Makefile')
-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