Created
October 27, 2010 15:59
-
-
Save watagashi/649333 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal | |
if not defined VIM set VIM=%1 | |
pushd %VIM%\src || goto end | |
rem mingw32-make -f Make_ming.mak clean | |
rem pause | |
mingw32-make -f Make_ming.mak OLE=yes | |
mingw32-make -f Make_ming.mak GUI=no | |
cd po | |
set LANGUAGE=ja.sjis | |
set VIMRUNTIME=..\..\runtime | |
mingw32-make -f Make_ming.mak | |
mingw32-make -f Make_ming.mak ja.sjis.mo | |
rem set LANGUAGE=ja | |
rem copy ja.sjis.mo ja.mo | |
rem mingw32-make -f Make_ming.mak install | |
xcopy %LANGUAGE%.mo %VIMRUNTIME%\lang\ja\LC_MESSAGES\vim.mo /d /y | |
popd | |
:end | |
endlocal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment