Skip to content

Commit

Permalink
Merge pull request #18 from staaldraad/update-makefile
Browse files Browse the repository at this point in the history
update makefile
  • Loading branch information
staaldraad authored Jan 3, 2024
2 parents e6d8f8f + fefc374 commit e386195
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,20 @@ compile:
# 32-bit
# Linux
GOOS=linux GOARCH=386 go build -o tcpprox-linux86
sha256sum tcpprox-linux86
sha256sum tcpprox-linux86 > tcpprox-linux86.sha256sum
# Windows
GOOS=windows GOARCH=386 go build -o tcpprox-win86.exe
sha256sum tcpprox-win86.exe
# OSX
GOOS=darwin GOARCH=386 go build -o tcpprox-osx86
sha256sum tcpprox-osx86
sha256sum tcpprox-win86.exe > tcpprox-win86.sha256sum

# 64-bit
# Linux
GOOS=linux GOARCH=amd64 go build -o tcpprox-linux64
sha256sum tcpprox-linux64
sha256sum tcpprox-linux64 > tcpprox-linux64.sha256sum
# Windows
GOOS=windows GOARCH=amd64 go build -o tcpprox-win64.exe
sha256sum tcpprox-win64.exe
sha256sum tcpprox-win64.exe > tcpprox-win64.sha256sum
# OSX
GOOS=darwin GOARCH=arm64 go build -o tcpprox-osxarm64
sha256sum tcpprox-osxarm64 > tcpprox-osxarm64.sha256sum
GOOS=darwin GOARCH=amd64 go build -o tcpprox-osx64
sha256sum tcpprox-osx64
sha256sum tcpprox-osx64 > tcpprox-osx64.sha256sum

0 comments on commit e386195

Please sign in to comment.