changed the build script to cope with the new init system

This commit is contained in:
Izaya 2020-03-20 13:16:22 +11:00
parent 0de3d01191
commit 77c69f651b
1 changed files with 1 additions and 3 deletions

View File

@ -1,12 +1,10 @@
#!/bin/sh
rm -r target/*
mkdir target &>/dev/null
mkdir target/cfg
lua luapreproc.lua module/init.lua target/init.lua
echo _OSVERSION=\"PsychOS 2.0a2-$(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 exec/ service/ lib/ target/
cp default-init.txt target/cfg/init.txt
cp -r service/ lib/ cfg/ target/
lua finddesc.lua $(find module/ -type f) $(find lib/ -type f) > apidoc.md
rm target/version.lua