tomo/examples/game/Makefile

18 lines
196 B
Makefile
Raw Permalink Normal View History

2024-09-08 17:34:26 -07:00
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