diff --git a/Makefile b/Makefile index 59df5f3..7fac82d 100644 --- a/Makefile +++ b/Makefile @@ -36,4 +36,11 @@ build-mac: go build -o dist/SshProxyTray.app/Contents/MacOS/sshproxytray main.go install-mac: - cp -r dist/SshProxyTray.app /Applications \ No newline at end of file + cp -r dist/SshProxyTray.app /Applications + +build-linux: + mkdir dist + go build -o dist/sshproxytray main.go + +install-linux: + mv dist/sshproxytray /usr/local/bin/sshproxytray \ No newline at end of file