2020-05-11 15:09:41 -04:00
|
|
|
#!/bin/bash
|
|
|
|
LUA=${LUA:-lua}
|
2019-11-04 22:06:19 -05:00
|
|
|
rm -r target/*
|
2020-05-12 02:59:17 -04:00
|
|
|
mkdir -p target/doc &>/dev/null
|
2020-06-02 19:55:22 -04:00
|
|
|
$LUA build.lua module/init.lua target/init.lua
|
2020-06-02 19:56:41 -04:00
|
|
|
echo _OSVERSION=\"PsychOS 2.0a3-$(git rev-parse --short HEAD)\" > target/version.lua
|
2019-11-05 22:01:10 -05:00
|
|
|
cat target/version.lua target/init.lua > target/tinit.lua
|
|
|
|
mv target/tinit.lua target/init.lua
|
2020-03-19 22:16:22 -04:00
|
|
|
cp -r service/ lib/ cfg/ target/
|
2020-03-17 23:02:58 -04:00
|
|
|
rm target/version.lua
|
2020-05-12 11:29:44 -04:00
|
|
|
rm -r doc/ &>/dev/null
|
2020-05-11 22:04:47 -04:00
|
|
|
$LUA finddesc.lua doc/ $(find lib/ module/ -type f|sort)
|
2020-05-12 02:59:17 -04:00
|
|
|
$LUA gendoc.lua target/doc/kernel.dict $(find module/ -type f|sort)
|
2020-05-12 02:11:51 -04:00
|
|
|
pandoc doc/apidoc.md docs-metadata.yml --template=template.tex -o doc/apidoc.pdf
|