Subversion Repositories Tewi

Rev

Rev 62 | Rev 78 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
62 nishi 1
#!/bin/sh
2
# $Id: installer.sh 77 2024-09-19 10:54:21Z nishi $
3
 
4
fail() {
5
	rm -f tewi-service.exe
6
	rm -f tewi.exe
7
	exit 1
8
}
9
 
10
make clean || fail
11
make PLATFORM=$1 -j4 || fail
12
cp Server/tewi.exe tewi.exe
13
make clean || fail
14
make PLATFORM=$1-service -j4 || fail
15
cp Server/tewi.exe tewi-service.exe
16
cd Server
77 nishi 17
makensis /DVERSION=\"`make get-version`\" install.nsi
62 nishi 18
rm -f tewi.exe tewi-service.exe
19
cd ..