ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.18
Committed: Sun Aug 31 10:04:14 2008 UTC (15 years, 8 months ago) by root
Branch: MAIN
Changes since 1.17: +6 -5 lines
Log Message:
*** empty log message ***

File Contents

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