diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-08 20:34:26 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-08 20:34:26 -0400 |
| commit | eb47f61450349b1be4e72ffe6f36273a1d01a428 (patch) | |
| tree | 211c7a46c2ee20d03bc147e0bedb4eae43b36e5b /examples/game/Makefile | |
| parent | ba3413a9c91dca356db47e0e8db91216c4e3906b (diff) | |
Add Makefile
Diffstat (limited to 'examples/game/Makefile')
| -rw-r--r-- | examples/game/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
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 |
