mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 15:30:55 +11:00
21 lines
215 B
Bash
Executable File
21 lines
215 B
Bash
Executable File
#/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
git submodule init
|
|
git submodule update
|
|
git clean -fxd
|
|
|
|
cd tools/emul
|
|
make
|
|
|
|
cd ../tests
|
|
make
|
|
|
|
# let's try again with an updated zasm
|
|
cd ../emul
|
|
make updatebootstrap all
|
|
|
|
cd ../tests
|
|
make
|