ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.8
Committed: Fri Oct 13 19:23:08 2006 UTC (17 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-0_97, rel-0_53
Changes since 1.7: +6 -7 lines
Log Message:
vc60

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.8 #sshpass -p geheim123 ssh -o PreferredAuthentications=password vm '
12     ssh vm '
13     export INCLUDE="c:\\vc98\\include;c:\\sdk\\include"
14     export LIB="c:\\vc98\\lib;c:\\sdk\\lib"
15 root 1.3 export ACTIVEPERL_CONFIG_DISABLE=1
16 root 1.8 export VCINSTALLDIR=c:\\vc98
17     PATH="/c/Perl/bin/:/c/WINNT/system32:/c/WINNT:/c/WINNT/System32/Wbem:/c/gtk2/bin:/c/bdb/bin:/c/sdk/Bin/:/c/sdk/Bin/WinNT/:/c/vc98/bin:/c/vc98/msdev98/bin:/gtk/bin:$PATH"
18 root 1.1
19 root 1.3 cd /c/Crossfire &&
20     /c/perl/bin/perl Makefile.PL &&
21     nmake install &&
22 root 1.1 cd /c/CFClient &&
23 root 1.3 /c/perl/bin/perl Makefile.PL &&
24 root 1.1 nmake install &&
25     win32/ppwin &&
26 root 1.5 cp cfplus.exe /c/temp
27 root 1.2 ' &&
28 root 1.5 rsync -avessh vm:/c/CFClient/cfplus.exe .
29     todata cfplus.exe
30 root 1.1