diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-02 01:41:55 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-02 02:01:41 -0800 |
commit | 9e5e87ca3776efa5f0d772ed8cf348bf6ee4d08e (patch) | |
tree | 5134d5ff1629cb5262e5feda38831456a2d1467d /translate_subx_emulated | |
parent | df8498fb8294cb07d02076cf3881617b5af07974 (diff) | |
download | mu-9e5e87ca3776efa5f0d772ed8cf348bf6ee4d08e.tar.gz |
5865
Give the bootstrap C++ program a less salient name.
Diffstat (limited to 'translate_subx_emulated')
-rwxr-xr-x | translate_subx_emulated | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/translate_subx_emulated b/translate_subx_emulated index 639d924e..0eab2c32 100755 --- a/translate_subx_emulated +++ b/translate_subx_emulated @@ -21,30 +21,30 @@ set -e ./build echo " braces" -cat $* |./subx_bin run apps/braces > a.braces +cat $* |./bootstrap_bin run apps/braces > a.braces echo " calls" -cat a.braces |./subx_bin run apps/calls > a.calls +cat a.braces |./bootstrap_bin run apps/calls > a.calls echo " sigils" -cat a.calls |./subx_bin run apps/sigils > a.sigils +cat a.calls |./bootstrap_bin run apps/sigils > a.sigils echo " tests" -cat a.sigils |./subx_bin run apps/tests > a.tests +cat a.sigils |./bootstrap_bin run apps/tests > a.tests echo " dquotes" -cat a.tests |./subx_bin run apps/dquotes > a.dquotes +cat a.tests |./bootstrap_bin run apps/dquotes > a.dquotes echo " assort" -cat a.dquotes |./subx_bin run apps/assort > a.assort +cat a.dquotes |./bootstrap_bin run apps/assort > a.assort echo " pack" -cat a.assort |./subx_bin run apps/pack > a.pack +cat a.assort |./bootstrap_bin run apps/pack > a.pack echo " survey" -cat a.pack |./subx_bin run apps/survey > a.survey +cat a.pack |./bootstrap_bin run apps/survey > a.survey echo " hex" -cat a.survey |./subx_bin run apps/hex > a.elf +cat a.survey |./bootstrap_bin run apps/hex > a.elf chmod +x a.elf |