blob: 931a489f1a07f3a345e3823fcef6584edd9b0ce9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Translate a Mu program using emulated mode on Linux or BSD or Mac.
set -e
set -v
cat $* [0-9]*.mu |bootstrap/bootstrap run ./mu > a.subx
./translate_subx_emulated [0-9]*.subx mu-init.subx a.subx
|