mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 15:20:56 +11:00
329219fa89
libz80 doesn't move much anymore, there not much advantage to the git module indirection.
12 lines
169 B
Bash
Executable File
12 lines
169 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
git clean -fxd
|
|
|
|
make -C tests
|
|
|
|
# verify that forth.bin is stable
|
|
cp cvm/forth.bin ref.bin
|
|
make -C cvm updatebootstrap
|
|
cmp cvm/forth.bin ref.bin
|
|
rm ref.bin
|