mirror of
https://github.com/golang/go
synced 2024-11-19 04:54:41 -07:00
47646d42a2
Update golang/go#9495 Change-Id: I732cfdee952ad3bf0b3411d0ce45723900acedb4 Reviewed-on: https://go-review.googlesource.com/2472 Reviewed-by: Andrew Gerrand <adg@golang.org>
19 lines
798 B
Makefile
19 lines
798 B
Makefile
buildlet: buildlet.go
|
|
go build --tags=buildlet
|
|
|
|
buildlet.openbsd-amd64: buildlet.go
|
|
GOOS=openbsd GOARCH=amd64 go build -o $@ --tags=buildlet
|
|
cat $@ | (cd ../coordinator/buildongce && go run create.go --write_object=go-builder-data/$@)
|
|
|
|
buildlet.plan9-386: buildlet.go
|
|
GOOS=plan9 GOARCH=386 go build -o $@ --tags=buildlet
|
|
cat $@ | (cd ../coordinator/buildongce && go run create.go --write_object=go-builder-data/$@)
|
|
|
|
buildlet.windows-amd64: buildlet.go
|
|
GOOS=windows GOARCH=amd64 go build -o $@ --tags=buildlet
|
|
cat $@ | (cd ../coordinator/buildongce && go run create.go --write_object=go-builder-data/$@)
|
|
|
|
buildlet.darwin-amd64: buildlet.go
|
|
GOOS=darwin GOARCH=amd64 go build -o $@ --tags=buildlet
|
|
cat $@ | (cd ../coordinator/buildongce && go run create.go --write_object=go-builder-data/$@)
|