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

Diff for /OpenXM_contrib2/windows/Attic/makepkg.bat between version 1.2 and 1.4

version 1.2, 2013/11/11 04:23:51 version 1.4, 2014/03/30 22:29:46
Line 1 
Line 1 
 @rem $OpenXM: OpenXM_contrib2/windows/makepkg.bat,v 1.1 2013/09/03 12:32:43 ohara Exp $  @rem $OpenXM: OpenXM_contrib2/windows/makepkg.bat,v 1.3 2013/11/16 16:25:48 ohara Exp $
 @echo off  @echo off
   
 if exist asir ( rmdir /q /s asir )  if exist asir ( rmdir /q /s asir )
Line 11  if /i "%Platform%" == "X64" (
Line 11  if /i "%Platform%" == "X64" (
   
 mkdir asir\bin asir\help\ja asir\lib asir\lib-asir-contrib asir\share\editor  mkdir asir\bin asir\help\ja asir\lib asir\lib-asir-contrib asir\share\editor
   
 for %%i in ( asir32gui\asirgui.exe asir32gui\ja.dll engine2000\engine.exe mcpp\cpp.exe post-msg-asirgui\cmdasir.exe ..\asir2000\asir.exe ) do (  for %%i in ( asir32gui\asirgui.exe asir32gui\ja.dll engine2000\engine.exe mcpp\cpp.exe post-msg-asirgui\cmdasir.exe ..\asir2000\asir.exe curl.exe unzip.exe ) do (
   copy /b %%i asir\bin    copy /b %%i asir\bin
 )  )
   
   if /i "%Platform%" == "X64" (
     copy /b mpir\x64\mpir.dll asir\bin
   ) else (
     copy /b mpir\win32\mpir.dll asir\bin
   )
   
 pushd help  pushd help
 if not exist ja ( call makehelp2.bat ja )  if not exist ja ( call makehelp2.bat ja )
 if not exist en ( call makehelp2.bat en )  if not exist en ( call makehelp2.bat en )
Line 40  del /q asir\lib-asir-contrib\Makefile.in
Line 46  del /q asir\lib-asir-contrib\Makefile.in
 del /q asir\lib-asir-contrib\y_prime\.keepme  del /q asir\lib-asir-contrib\y_prime\.keepme
   
 if /i "%Platform%" == "X64" (  if /i "%Platform%" == "X64" (
   zip -r asir_win64-%DATE:/=.%.zip asir    zip -r asir_win64_%DATE:/=.%.zip asir
 ) else (  ) else (
   zip -r asir_win32-%DATE:/=.%.zip asir    zip -r asir_win32_%DATE:/=.%.zip asir
 )  )
   
 exit /b 0  exit /b 0

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

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