blob: c5b889d04d112413162a418ce74b641ed6d3b646 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Translate a Mu program to a bootable disk image.
set -e
cat $* [0-9]*.mu |linux/mu > a.subx
./translate_subx boot.subx font.subx mu-init.subx [0-9]*.subx a.subx
|