ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.19
Committed: Fri Sep 5 15:24:10 2008 UTC (15 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-0_9976
Changes since 1.18: +4 -3 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 root 1.15 if true; then
6 root 1.19 for mod in AnyEvent EV JSON-XS Deliantra BDB Compress-LZF; do
7 root 1.15 (
8     cd /root/src/"$mod"
9     make clean
10 root 1.19 ssh vm mkdir /c/"$mod"
11     rsync -avPessh --modify-window=1 . vm:/c/"$mod"/. --del
12 root 1.15 ) &
13     done
14     fi
15 root 1.13
16     wait
17    
18 root 1.3 (
19 root 1.14 cd ../Deliantra || exit 69
20 root 1.3 [ -e Makefile ] && make clean
21     rsync -avessh --modify-window=1 . vm:/c/Crossfire/.
22     ) &&
23 root 1.11 rsync -avessh --modify-window=1 . vm:/c/CFClient/. --exclude audio --exclude "*.exe" &&
24 root 1.8 #sshpass -p geheim123 ssh -o PreferredAuthentications=password vm '
25     ssh vm '
26     export INCLUDE="c:\\vc98\\include;c:\\sdk\\include"
27     export LIB="c:\\vc98\\lib;c:\\sdk\\lib"
28 root 1.3 export ACTIVEPERL_CONFIG_DISABLE=1
29 root 1.8 export VCINSTALLDIR=c:\\vc98
30 root 1.9 export MSVCDir=c:\\vc98
31     export MSDevDir=c:\\vs6\\common\\msdev98
32 root 1.13 export PERL_MM_USE_DEFAULT=1
33 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"
34 root 1.1
35 root 1.18 cd /c/AnyEvent && /c/perl/bin/perl Makefile.PL && nmake install &&
36     cd /c/EV && /c/perl/bin/perl Makefile.PL && nmake install &&
37     cd /c/BDB && /c/perl/bin/perl Makefile.PL && nmake install &&
38     cd /c/JSON-XS && /c/perl/bin/perl Makefile.PL && nmake install &&
39 root 1.19 cd /c/Deliantra && /c/perl/bin/perl Makefile.PL && nmake install &&
40 root 1.18 cd /c/Compress-LZF && /c/perl/bin/perl Makefile.PL && nmake install &&
41 root 1.13
42 root 1.1 cd /c/CFClient &&
43 root 1.3 /c/perl/bin/perl Makefile.PL &&
44 root 1.1 nmake install &&
45     win32/ppwin &&
46 root 1.12 cp deliantra.exe /c/temp
47 root 1.2 ' &&
48 root 1.12 rsync -avessh vm:/c/CFClient/deliantra.exe .
49 root 1.17 cp deliantra.exe /fs/dosx/todo/. &
50 root 1.12 todata deliantra.exe
51 root 1.16 wait
52 root 1.1