15 lines
585 B
Bash
Executable File
15 lines
585 B
Bash
Executable File
#!/bin/bash
|
|
LUA=${LUA:-lua}
|
|
rm -r target/*
|
|
mkdir -p target/doc &>/dev/null
|
|
$LUA build.lua module/init.lua target/init.lua
|
|
echo _OSVERSION=\"PsychOS 2.0a3-$(git rev-parse --short HEAD)\" > target/version.lua
|
|
cat target/version.lua target/init.lua > target/tinit.lua
|
|
mv target/tinit.lua target/init.lua
|
|
cp -r service/ lib/ cfg/ target/
|
|
rm target/version.lua
|
|
rm -r doc/ &>/dev/null
|
|
$LUA finddesc.lua doc/ $(find lib/ module/ -type f|sort)
|
|
$LUA gendoc.lua target/doc/kernel.dict $(find module/ -type f|sort)
|
|
pandoc doc/apidoc.md docs-metadata.yml --template=template.tex -o doc/apidoc.pdf
|