It would be nice™ to be able to play and compress the .ogg music files from their .mid source files (it looks like they got removed in ed84063), similar to what can be done in Planet Blupi:
midfiles := $(wildcard resources/music/*.mid)
oggfiles := $(midfiles:.mid=.ogg)
resources/music/%.ogg: resources/music/%.mid
# Encode to ogg with "Quality=0" ~ 64 kB
timidity -c /etc/timidity/timgm6mb.cfg -Ow $< -o - | oggenc -Q -q0 --serial 1 -o $@ -
It would be nice™ to be able to play and compress the .ogg music files from their .mid source files (it looks like they got removed in ed84063), similar to what can be done in Planet Blupi: