--- deliantra/Deliantra-Client/makebin.win32 2007/10/14 20:08:26 1.12 +++ deliantra/Deliantra-Client/makebin.win32 2007/12/09 14:45:16 1.13 @@ -2,6 +2,16 @@ [ -e Makefile ] && make clean +for mod in AnyEvent EV JSON-XS Crossfire BDB; do + ( + cd /root/src/"$mod" + make clean + rsync -avPessh --modify-window=1 /root/src/"$mod" vm:/c/. --del + ) & +done + +wait + ( cd ../Crossfire || exit 69 [ -e Makefile ] && make clean @@ -16,11 +26,15 @@ export VCINSTALLDIR=c:\\vc98 export MSVCDir=c:\\vc98 export MSDevDir=c:\\vs6\\common\\msdev98 + export PERL_MM_USE_DEFAULT=1 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" - cd /c/Crossfire && - /c/perl/bin/perl Makefile.PL && - nmake install && + cd /c/AnyEvent && /c/perl/bin/perl Makefile.PL && nmake install && + cd /c/EV && /c/perl/bin/perl Makefile.PL && nmake install && + cd /c/BDB && /c/perl/bin/perl Makefile.PL && nmake install && + cd /c/JSON-XS && /c/perl/bin/perl Makefile.PL && nmake install && + cd /c/Crossfire && /c/perl/bin/perl Makefile.PL && nmake install && + cd /c/CFClient && /c/perl/bin/perl Makefile.PL && nmake install &&