a2d/res/go.sh
Joshua Bell dd30201bcc Remove RAM.SYSTEM. Issue #108
Turns out this was Glen E. Bredon's RAM.DRV.SYSTEM which has
previously been disassembled. I preserved this work over at:

https://github.com/inexorabletash/ram.system
2019-02-24 20:08:03 -08:00

19 lines
277 B
Bash
Executable File

#!/bin/bash
# Run this from the top level directory
set -e
source "res/util.sh"
for i in desktop desk.acc desktop.system; do
cecho yellow Building: $i
cd $i
res/go.sh
cd ..
done
# Mountable directory for Virtual ][
if [ -d mount ]; then
res/mount.sh
fi