=================================================================== RCS file: /home/cvs/OpenXM_contrib2/windows/Attic/makepkg.bat,v retrieving revision 1.2 retrieving revision 1.4 diff -u -p -r1.2 -r1.4 --- OpenXM_contrib2/windows/Attic/makepkg.bat 2013/11/11 04:23:51 1.2 +++ OpenXM_contrib2/windows/Attic/makepkg.bat 2014/03/30 22:29:46 1.4 @@ -1,4 +1,4 @@ -@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 if exist asir ( rmdir /q /s asir ) @@ -11,10 +11,16 @@ if /i "%Platform%" == "X64" ( 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 ) +if /i "%Platform%" == "X64" ( + copy /b mpir\x64\mpir.dll asir\bin +) else ( + copy /b mpir\win32\mpir.dll asir\bin +) + pushd help if not exist ja ( call makehelp2.bat ja ) if not exist en ( call makehelp2.bat en ) @@ -40,9 +46,9 @@ del /q asir\lib-asir-contrib\Makefile.in del /q asir\lib-asir-contrib\y_prime\.keepme if /i "%Platform%" == "X64" ( - zip -r asir_win64-%DATE:/=.%.zip asir + zip -r asir_win64_%DATE:/=.%.zip asir ) else ( - zip -r asir_win32-%DATE:/=.%.zip asir + zip -r asir_win32_%DATE:/=.%.zip asir ) exit /b 0