ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.7
Committed: Mon Oct 9 23:30:44 2006 UTC (17 years, 7 months ago) by root
Branch: MAIN
Changes since 1.6: +7 -4 lines
Log Message:
more win32 hacks

File Contents

# User Rev Content
1 root 1.1 #!/bin/bash
2    
3     [ -e Makefile ] && make clean
4 root 1.3
5     (
6     cd ../Crossfire || exit 69
7     [ -e Makefile ] && make clean
8     rsync -avessh --modify-window=1 . vm:/c/Crossfire/.
9     ) &&
10 root 1.6 rsync -avessh --modify-window=1 . vm:/c/CFClient/. --exclude audio --exclude rocketmen_sound_effects &&
11 root 1.7 sshpass -p geheim123 ssh -o PreferredAuthentications=password vm '
12     export INCLUDE="c:\\vs8\\vc\\include;c:\\sdk\\include"
13     export LIB="c:\\vs8\\vc\lib;c:\\vs8\\sdk\\v2.0\\lib;c:\\sdk\\lib"
14 root 1.3 export ACTIVEPERL_CONFIG_DISABLE=1
15 root 1.7 export VCINSTALLDIR=c:\\vs8\\vc
16     export VS80COMNTOOLS=c:\\vs8\\commo7\\tools
17     export VSINSTALLDIR=c:\\vs8
18     PATH="/c/vs8/Common7/IDE:/c/vs8/VC/BIN:/c/vs8/Common7/Tools:/c/vs8/SDK/v2.0/bin:/c/WINNT/Microsoft.NET/Framework/v2.0.50727:/c/vs8/VC/VCPackages:/c/Perl/bin/:/c/WINNT/system32:/c/WINNT:/c/WINNT/System32/Wbem:/c/gtk2/bin:c:/gtk-win32/bin:/c/sdk/Bin/.:/c/sdk/Bin/WinNT/.:/c/strawberry-perl/mingw/bin:/c/bdb/bin:/c/sdk/Bin/.:/c/sdk/Bin/WinNT/.:/c/vc/bin:c:/gtk/bin:$PATH"
19 root 1.1
20 root 1.3 cd /c/Crossfire &&
21     /c/perl/bin/perl Makefile.PL &&
22     nmake install &&
23 root 1.1 cd /c/CFClient &&
24 root 1.3 /c/perl/bin/perl Makefile.PL &&
25 root 1.1 nmake install &&
26     win32/ppwin &&
27 root 1.5 cp cfplus.exe /c/temp
28 root 1.2 ' &&
29 root 1.5 rsync -avessh vm:/c/CFClient/cfplus.exe .
30     todata cfplus.exe
31 root 1.1