Skip to content
Snippets Groups Projects
Commit c98951d6 authored by Jono Wenger's avatar Jono Wenger
Browse files

Fix makefile

parent 38fa0fa4
No related branches found
No related tags found
No related merge requests found
...@@ -15,3 +15,15 @@ update_master: ...@@ -15,3 +15,15 @@ update_master:
GOFLAGS="" go get -d git.xx.network/elixxir/mainnet-commitments@jonah/tm-change GOFLAGS="" go get -d git.xx.network/elixxir/mainnet-commitments@jonah/tm-change
master: update_master clean build master: update_master clean build
linux64_binary:
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags '-w -s' -o mainnet-commitments-ui.linux64 main.go index.go
win64_binary:
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -ldflags '-w -s' -o mainnet-commitments-ui.exe main.go index.go
darwin64_binary:
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -ldflags '-w -s' -o mainnet-commitments-ui.darwin64 main.go index.go
binaries: linux64_binary win64_binary darwin64_binary
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment