blob: 7cf46ce6219d00858d8f65b4024e0a9b85d58849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|