aboutsummaryrefslogtreecommitdiff
path: root/dashboard/cmd/buildlet/stage0/Makefile
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2015-01-14 17:24:45 -0800
committerBrad Fitzpatrick <bradfitz@golang.org>2015-01-15 02:58:11 +0000
commite83451b9c2f0bffdd8ae5e5889d982ad960a81f4 (patch)
tree79256551b86bcebeac8f90b16b1d102b68035891 /dashboard/cmd/buildlet/stage0/Makefile
parent9f20d8c1983155428edf49b3f12ea85580740f91 (diff)
downloadtools-e83451b9c2f0bffdd8ae5e5889d982ad960a81f4.tar.gz
dashboard: rearrange tree, in prep for packagification
Package main binaries now go under cmd, leaving the top level for similarly-named packages. I'll be moving a lot of data structures and functions out of the commands and into common packages. A future CL will also unify all the "+build whatever" restrictions into one common build tag, since there will be so much package sharing coming up. Probably they will become "+build extdep", to indicate that they have dependencies outside of x/tools. Change-Id: Idc198e0dfa933b5f5de8f2b581533e8d299d2293 Reviewed-on: https://go-review.googlesource.com/2738 Reviewed-by: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'dashboard/cmd/buildlet/stage0/Makefile')
-rw-r--r--dashboard/cmd/buildlet/stage0/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/dashboard/cmd/buildlet/stage0/Makefile b/dashboard/cmd/buildlet/stage0/Makefile
new file mode 100644
index 0000000..f9a3c19
--- /dev/null
+++ b/dashboard/cmd/buildlet/stage0/Makefile
@@ -0,0 +1,3 @@
+buildlet-stage0.windows-amd64: stage0.go
+ GOOS=windows GOARCH=amd64 go build -o $@ --tags=stage0
+ cat $@ | (cd ../../upload && go run upload.go --public go-builder-data/$@)