From 2998246e1b15a09781ff892192992f696d5a6926 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Fri, 22 Dec 2017 20:36:08 +1300 Subject: POSIX-ify makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.1