ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.13
Committed: Sun Dec 9 14:45:16 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-0_9960
Changes since 1.12: +17 -3 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/bin/bash
2
3 [ -e Makefile ] && make clean
4
5 for mod in AnyEvent EV JSON-XS Crossfire BDB; do
6 (
7 cd /root/src/"$mod"
8 make clean
9 rsync -avPessh --modify-window=1 /root/src/"$mod" vm:/c/. --del
10 ) &
11 done
12
13 wait
14
15 (
16 cd ../Crossfire || exit 69
17 [ -e Makefile ] && make clean
18 rsync -avessh --modify-window=1 . vm:/c/Crossfire/.
19 ) &&
20 rsync -avessh --modify-window=1 . vm:/c/CFClient/. --exclude audio --exclude "*.exe" &&
21 #sshpass -p geheim123 ssh -o PreferredAuthentications=password vm '
22 ssh vm '
23 export INCLUDE="c:\\vc98\\include;c:\\sdk\\include"
24 export LIB="c:\\vc98\\lib;c:\\sdk\\lib"
25 export ACTIVEPERL_CONFIG_DISABLE=1
26 export VCINSTALLDIR=c:\\vc98
27 export MSVCDir=c:\\vc98
28 export MSDevDir=c:\\vs6\\common\\msdev98
29 export PERL_MM_USE_DEFAULT=1
30 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"
31
32 cd /c/AnyEvent && /c/perl/bin/perl Makefile.PL && nmake install &&
33 cd /c/EV && /c/perl/bin/perl Makefile.PL && nmake install &&
34 cd /c/BDB && /c/perl/bin/perl Makefile.PL && nmake install &&
35 cd /c/JSON-XS && /c/perl/bin/perl Makefile.PL && nmake install &&
36 cd /c/Crossfire && /c/perl/bin/perl Makefile.PL && nmake install &&
37
38 cd /c/CFClient &&
39 /c/perl/bin/perl Makefile.PL &&
40 nmake install &&
41 win32/ppwin &&
42 cp deliantra.exe /c/temp
43 ' &&
44 rsync -avessh vm:/c/CFClient/deliantra.exe .
45 todata deliantra.exe
46