Guest User

Untitled

a guest
Jun 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. @echo off
  2. setlocal
  3. if not defined VIM set VIM=%1
  4. pushd %VIM%\src || goto end
  5.  
  6. rem mingw32-make -f Make_ming.mak clean
  7. rem pause
  8. mingw32-make -f Make_ming.mak OLE=yes
  9. mingw32-make -f Make_ming.mak GUI=no
  10.  
  11. cd po
  12. set LANGUAGE=ja.sjis
  13. set VIMRUNTIME=..\..\runtime
  14. mingw32-make -f Make_ming.mak
  15. mingw32-make -f Make_ming.mak ja.sjis.mo
  16. rem set LANGUAGE=ja
  17. rem copy ja.sjis.mo ja.mo
  18. rem mingw32-make -f Make_ming.mak install
  19. xcopy %LANGUAGE%.mo %VIMRUNTIME%\lang\ja\LC_MESSAGES\vim.mo /d /y
  20.  
  21. popd
  22. :end
  23. endlocal
Add Comment
Please, Sign In to add comment