Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
234B

  1. #!/bin/sh -e
  2. git submodule init
  3. git submodule update
  4. git clean -fxd
  5. make -C cvm
  6. make -C emul
  7. make -C tests
  8. # verify that forth.bin is stable
  9. cp cvm/forth.bin ref.bin
  10. make -C cvm updatebootstrap
  11. cmp cvm/forth.bin ref.bin
  12. rm ref.bin