ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.24
Committed: Fri Dec 30 06:31:41 2011 UTC (12 years, 4 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.23: +0 -0 lines
State: FILE REMOVED
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.22 for mod in AnyEvent EV JSON-XS Deliantra BDB Compress-LZF Guard common-sense; do
7 root 1.15 (
8     cd /root/src/"$mod"
9     make clean
10 root 1.20 ssh vm mkdir -p /c/"$mod"
11     rsync -avPessh --modify-window=1 . vm:/c/"$mod"/. --del --exclude /pgrab
12 root 1.15 ) &
13     done
14     fi
15 root 1.13
16     wait
17    
18 root 1.11 rsync -avessh --modify-window=1 . vm:/c/CFClient/. --exclude audio --exclude "*.exe" &&
19 root 1.8 #sshpass -p geheim123 ssh -o PreferredAuthentications=password vm '
20     ssh vm '
21 root 1.23 . ~/.setenv
22 root 1.3 export ACTIVEPERL_CONFIG_DISABLE=1
23 root 1.13 export PERL_MM_USE_DEFAULT=1
24 root 1.1
25 root 1.22 cd /c/common-sense && /c/perl/bin/perl Makefile.PL && nmake install &&
26 root 1.21 cd /c/Guard && /c/perl/bin/perl Makefile.PL && nmake install &&
27 root 1.18 cd /c/AnyEvent && /c/perl/bin/perl Makefile.PL && nmake install &&
28     cd /c/EV && /c/perl/bin/perl Makefile.PL && nmake install &&
29     cd /c/BDB && /c/perl/bin/perl Makefile.PL && nmake install &&
30     cd /c/JSON-XS && /c/perl/bin/perl Makefile.PL && nmake install &&
31 root 1.19 cd /c/Deliantra && /c/perl/bin/perl Makefile.PL && nmake install &&
32 root 1.18 cd /c/Compress-LZF && /c/perl/bin/perl Makefile.PL && nmake install &&
33 root 1.13
34 root 1.1 cd /c/CFClient &&
35 root 1.3 /c/perl/bin/perl Makefile.PL &&
36 root 1.1 nmake install &&
37     win32/ppwin &&
38 root 1.12 cp deliantra.exe /c/temp
39 root 1.2 ' &&
40 root 1.12 rsync -avessh vm:/c/CFClient/deliantra.exe .
41 root 1.17 cp deliantra.exe /fs/dosx/todo/. &
42 root 1.12 todata deliantra.exe
43 root 1.16 wait
44 root 1.1