tewi/installer.sh
Nishi 969a93e43c add version info
git-svn-id: file:///raid/svn-personal/tewi/trunk@78 8739d7e6-ffea-ec47-b151-bdff447c6205
2024-09-19 10:56:38 +00:00

22 lines
362 B
Bash
Executable File

#!/bin/sh
# $Id$
fail() {
rm -f tewi-service.exe
rm -f tewi.exe
exit 1
}
VERSION=`make get-version`
make clean || fail
make PLATFORM=$1 -j4 || fail
cp Server/tewi.exe tewi.exe
make clean || fail
make PLATFORM=$1-service -j4 || fail
cp Server/tewi.exe tewi-service.exe
cd Server
makensis -DVERSION=$VERSION install.nsi
rm -f tewi.exe tewi-service.exe
cd ..