tewi/installer.sh
Nishi e43e5b1c69 add installer.sh
git-svn-id: file:///raid/svn-personal/tewi/trunk@62 8739d7e6-ffea-ec47-b151-bdff447c6205
2024-09-18 20:02:26 +00:00

20 lines
315 B
Bash
Executable File

#!/bin/sh
# $Id$
fail() {
rm -f tewi-service.exe
rm -f tewi.exe
exit 1
}
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 install.nsi
rm -f tewi.exe tewi-service.exe
cd ..