tools: more wine shell variants

This commit is contained in:
Simon Michael 2014-04-19 11:58:55 -07:00
parent 4ef33c012a
commit 1b6ccc03bc

View File

@ -273,11 +273,22 @@ windowsbinaries: install
@echo 'Please check the binaries are portable, then make compressbinaries' @echo 'Please check the binaries are portable, then make compressbinaries'
ls -l bin/*`arch` ls -l bin/*`arch`
wine-bash wine: # various ways of getting a wine shell
wine c:/mingw/msys/1.0/bin/mintty.exe - & # command-line windows command prompt. Works eg in an emacs shell buffer.
wine-cmd: wine-cmd:
wineconsole cmd.exe & wine cmd
# as above but try to cd somewhere useful (doesn't work), also ctrl-d exits quickly
wine-cmd2:
(echo c:; echo cd \\mingw\\msys\\1.0; cat) | wine cmd
# windows command prompt in a new window
wine-cmd-window:
wineconsole cmd &
# msys bash shell in a mintty window
wine-mintty:
wine c:/mingw/msys/1.0/bin/mintty - &
compressbinaries: compressbinaries:
cd bin; for f in *-windows-*.exe ; do echo zipping $$f; rm -f $$f.zip; zip $$f.zip $$f; done cd bin; for f in *-windows-*.exe ; do echo zipping $$f; rm -f $$f.zip; zip $$f.zip $$f; done