mirror of
https://github.com/golang/go
synced 2024-11-19 03:04:42 -07:00
dd517c42bc
Change-Id: I69938af38fb5c45c01598e9171e851a1c29790bc Reviewed-on: https://go-review.googlesource.com/2268 Reviewed-by: Andrew Gerrand <adg@golang.org>
15 lines
610 B
Makefile
15 lines
610 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/$@)
|