code / tomo-game

Lines231 Tomo187 Text18 Markdown16 make10
(17 lines)
3 game: game.tm box.tm color.tm player.tm world.tm
4 tomo -e game.tm
6 # Disable built-in makefile rules:
7 %: %.c
8 %.o: %.c
9 %: %.o
11 clean:
12 rm -vf game *.tm.*
14 play: game
15 ./game
17 .PHONY: play, clean