Skip to content

Instantly share code, notes, and snippets.

@mattn
Created October 20, 2010 06:23
Show Gist options
  • Save mattn/635886 to your computer and use it in GitHub Desktop.
Save mattn/635886 to your computer and use it in GitHub Desktop.
@echo off
if "%GOROOT%" neq "" goto run
set GOROOT=c:/go
:run
if "%GOMAKE%" equ "" goto mingw
%GOMAKE% %*
goto end
:mingw
mingw32-make %*
:end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment