source:
Main/trunk/installer.sh@
62
Last change on this file since 62 was 62, checked in by , on Sep 19, 2024 at 5:02:26 AM | |
---|---|
|
|
File size: 315 bytes |
Rev | Line | |
---|---|---|
[62] | 1 | #!/bin/sh |
2 | # $Id: installer.sh 62 2024-09-18 20:02:26Z 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 | |
17 | makensis install.nsi | |
18 | rm -f tewi.exe tewi-service.exe | |
19 | cd .. |
Note:
See TracBrowser
for help on using the repository browser.