Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

15 satır
225B

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