You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
228 B
Makefile
9 lines
228 B
Makefile
5 years ago
|
windows:
|
||
|
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o gormt.exe main.go
|
||
|
mac:
|
||
|
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o gormt main.go
|
||
|
linux:
|
||
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o gormt main.go
|
||
|
|
||
|
|