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