ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.6
Committed: Mon Aug 14 23:40:05 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-0_52, rel-0_51, rel-0_5
Changes since 1.5: +1 -1 lines
Log Message:
win32

File Contents

# Content
1 #!/bin/bash
2
3 [ -e Makefile ] && make clean
4
5 (
6 cd ../Crossfire || exit 69
7 [ -e Makefile ] && make clean
8 rsync -avessh --modify-window=1 . vm:/c/Crossfire/.
9 ) &&
10 rsync -avessh --modify-window=1 . vm:/c/CFClient/. --exclude audio --exclude rocketmen_sound_effects &&
11 ssh vm '
12 export INCLUDE="c:\\vc\\include;c:\\sdk\\include"
13 export LIB="c:\\vc\lib;c:\\sdk\\lib"
14 export ACTIVEPERL_CONFIG_DISABLE=1
15 PATH="/c/gtk/bin:/c/perl/bin:/c/vc/bin:$PATH"
16
17 cd /c/Crossfire &&
18 /c/perl/bin/perl Makefile.PL &&
19 nmake install &&
20 cd /c/CFClient &&
21 /c/perl/bin/perl Makefile.PL &&
22 nmake install &&
23 win32/ppwin &&
24 cp cfplus.exe /c/temp
25 ' &&
26 rsync -avessh vm:/c/CFClient/cfplus.exe .
27 todata cfplus.exe
28