mirror of
https://github.com/mi57730/a2d.git
synced 2024-12-01 20:50:06 +00:00
dd30201bcc
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
19 lines
277 B
Bash
Executable File
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
|