ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.win32
Revision: 1.2
Committed: Sun May 14 22:58:24 2006 UTC (18 years ago) by root
Branch: MAIN
Changes since 1.1: +2 -4 lines
Log Message:
microsoft of course can't be expected to get it right (C truncates instead of rounding - microsoft rounds instead of implementing C)

File Contents

# User Rev Content
1 root 1.1 #!/bin/bash
2    
3     [ -e Makefile ] && make clean
4 root 1.2 rsync -avessh --modify-window=1 . vm:/c/CFClient/. &&
5 root 1.1 ssh vm '
6     export INCLUDE="c:\\vc\\include;c:\\sdk\\include"
7     export LIB="c:\\vc\lib;c:\\sdk\\lib"
8     PATH="/c/gtk/bin:/c/perl/bin:/c/vc/bin:$PATH"
9    
10     cd /c/CFClient &&
11     ACTIVEPERL_CONFIG_DISABLE=1 /c/perl/bin/perl Makefile.PL &&
12     nmake install &&
13     win32/ppwin &&
14     cp pclient.exe /c/temp
15 root 1.2 ' &&
16 root 1.1 rsync -avessh vm:/c/CFClient/pclient.exe .
17