Skip to content

Instantly share code, notes, and snippets.

@watagashi
Created October 27, 2010 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save watagashi/649333 to your computer and use it in GitHub Desktop.
Save watagashi/649333 to your computer and use it in GitHub Desktop.
@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