From eb47f61450349b1be4e72ffe6f36273a1d01a428 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 8 Sep 2024 20:34:26 -0400 Subject: Add Makefile --- examples/game/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 examples/game/Makefile (limited to 'examples/game/Makefile') diff --git a/examples/game/Makefile b/examples/game/Makefile new file mode 100644 index 00000000..7cf46ce6 --- /dev/null +++ b/examples/game/Makefile @@ -0,0 +1,17 @@ + + +game: game.tm box.tm color.tm player.tm world.tm + tomo -e game.tm + +# Disable built-in makefile rules: +%: %.c +%.o: %.c +%: %.o + +clean: + rm -vf game *.tm.* + +play: game + ./game + +.PHONY: play, clean -- cgit v1.2.3