Guest User

Untitled

a guest
Jun 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. @echo off
  2. if "%GOROOT%" neq "" goto run
  3. set GOROOT=c:/go
  4.  
  5. :run
  6. if "%GOMAKE%" equ "" goto mingw
  7. %GOMAKE% %*
  8. goto end
  9.  
  10. :mingw
  11. mingw32-make %*
  12.  
  13. :end
Add Comment
Please, Sign In to add comment