ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.10
Committed: Mon Apr 16 20:35:28 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-0_98
Changes since 1.9: +1 -1 lines
Log Message:
*** empty log message ***

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.10 rsync -avessh --modify-window=1 . vm:/c/CFClient/. --exclude audio --exclude rocketmen_sound_effects --exclude "*.exe" &&
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 root 1.9 export MSVCDir=c:\\vc98
18     export MSDevDir=c:\\vs6\\common\\msdev98
19 root 1.8 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"
20 root 1.1
21 root 1.3 cd /c/Crossfire &&
22     /c/perl/bin/perl Makefile.PL &&
23     nmake install &&
24 root 1.1 cd /c/CFClient &&
25 root 1.3 /c/perl/bin/perl Makefile.PL &&
26 root 1.1 nmake install &&
27     win32/ppwin &&
28 root 1.5 cp cfplus.exe /c/temp
29 root 1.2 ' &&
30 root 1.5 rsync -avessh vm:/c/CFClient/cfplus.exe .
31     todata cfplus.exe
32 root 1.1