source: Main/trunk/installer.sh@ 77

Last change on this file since 77 was 77, checked in by Nishi, on Sep 19, 2024 at 7:54:21 PM

trying to add version info

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 348 bytes
RevLine 
[62]1#!/bin/sh
2# $Id: installer.sh 77 2024-09-19 10:54:21Z nishi $
3
4fail() {
5 rm -f tewi-service.exe
6 rm -f tewi.exe
7 exit 1
8}
9
10make clean || fail
11make PLATFORM=$1 -j4 || fail
12cp Server/tewi.exe tewi.exe
13make clean || fail
14make PLATFORM=$1-service -j4 || fail
15cp Server/tewi.exe tewi-service.exe
16cd Server
[77]17makensis /DVERSION=\"`make get-version`\" install.nsi
[62]18rm -f tewi.exe tewi-service.exe
19cd ..
Note: See TracBrowser for help on using the repository browser.