| Revision: | 1.2 |
| Committed: | Sun May 14 22:58:24 2006 UTC (19 years, 11 months 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) |
| # | Content |
|---|---|
| 1 | #!/bin/bash |
| 2 | |
| 3 | [ -e Makefile ] && make clean |
| 4 | rsync -avessh --modify-window=1 . vm:/c/CFClient/. && |
| 5 | 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 | ' && |
| 16 | rsync -avessh vm:/c/CFClient/pclient.exe . |
| 17 |