1 2 3 game: game.tm box.tm color.tm player.tm world.tm 4 tomo -e game.tm 5 6 # Disable built-in makefile rules: 7 %: %.c 8 %.o: %.c 9 %: %.o 10 11 clean: 12 rm -vf game *.tm.* 13 14 play: game 15 ./game 16 17 .PHONY: play, clean