Operating system for OpenComputers
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 lines
612B

  1. #!/bin/bash
  2. LUA=${LUA:-lua}
  3. KVAR=${1:-base}
  4. rm -r target/*
  5. mkdir -p target/doc &>/dev/null
  6. $LUA build.lua kcfg/$KVAR.cfg target/init.lua
  7. echo _OSVERSION=\"PsychOS 2.0a3-$(git rev-parse --short HEAD)-$KVAR\" > target/version.lua
  8. cat target/version.lua target/init.lua > target/tinit.lua
  9. mv target/tinit.lua target/init.lua
  10. cp -r service/ lib/ cfg/ exec/ target/
  11. rm target/version.lua
  12. rm -r doc/ &>/dev/null
  13. $LUA finddesc.lua doc/ $(find lib/ module/ -type f|sort)
  14. $LUA gendoc.lua target/doc/kernel.dict $(find module/ -type f|sort)
  15. pandoc doc/apidoc.md docs-metadata.yml --template=template.tex -o doc/apidoc.pdf