diff options
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
![]() |
index : tetris | |
Mostly compliant implementation of Tetris using SDL | David Phillips |
aboutsummaryrefslogtreecommitdiff |
-rw-r--r-- | Makefile | 2 |
@@ -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 |