[BACK]Return to makebin64.bat CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows

Diff for /OpenXM_contrib2/windows/Attic/makebin64.bat between version 1.10 and 1.16

version 1.10, 2013/08/05 11:47:03 version 1.16, 2016/06/29 13:27:12
Line 1 
Line 1 
 @rem $OpenXM: OpenXM_contrib2/windows/makebin64.bat,v 1.9 2013/08/05 11:41:40 ohara Exp $  @rem $OpenXM: OpenXM_contrib2/windows/makebin64.bat,v 1.15 2015/08/13 13:45:26 ohara Exp $
 @echo off  @echo off
   
 set ARCH=AMD64  set ARCH=AMD64
   set INCLUDE=%INCLUDE%;%ProgramFiles(x86)%\Microsoft SDKs\Windows\v7.1A\Include
   
 if not exist gc-7.2 ( echo run ./extract_gc.sh in cyngwin & exit /b 1 )  setlocal
 pushd gc-7.2  set PATH=%PATH%;c:\cygwin\bin;c:\cygwin64\bin
   if not exist gc ( bash -c 'PATH=/bin:$PATH ./extract_gc.sh' )
   endlocal
   
   pushd gc
 nmake -f NT_X64_STATIC_THREADS_MAKEFILE gc.lib  nmake -f NT_X64_STATIC_THREADS_MAKEFILE gc.lib
 popd  popd
   
 pushd pari20  for %%i in ( asir2000lib engine2000 mcpp asir32gui post-msg-asirgui ..\asir2000 ) do (
 nmake -f Makefile.vc6  
 popd  
   
 for %%i in ( asir2000lib engine2000 mcpp asir32gui ) do (  
   pushd %%i    pushd %%i
   nmake -f Makefile.vc    nmake -f Makefile.vc
   popd    popd
 )  )
   
 pushd asir32gui  
 nmake -f Makefile.vc LANG=en  
 popd  
   
 pushd ..\asir2000  
 nmake -f Makefile.vc  
 popd  

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.16

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>