Delta Between Two Patch Sets: dashboard/builder/Makefile
Issue 12180043 :
code review 12180043: go.tools: add dashboard
Left Patch Set:
Right Patch Set: diff -r 79ec8d3bcf1d https://code.google.com/p/go/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
dashboard/README
dashboard/app/app.yaml
dashboard/app/build/build.go
dashboard/app/build/handler.go
dashboard/app/build/init.go
dashboard/app/build/key.go
dashboard/app/build/notify.go
dashboard/app/build/notify.txt
dashboard/app/build/test.go
dashboard/app/build/ui.go
dashboard/app/build/ui.html
dashboard/app/cache/cache.go
dashboard/app/static/status_alert.gif
dashboard/app/static/status_good.gif
dashboard/builder/Makefile
dashboard/builder/doc.go
dashboard/builder/exec.go
dashboard/builder/http.go
dashboard/builder/main.go
dashboard/builder/vcs.go
LEFT RIGHT
(no file at all) 1 # Copyright 2009 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file.
4
5 builder: $(shell ls *.go)
6 go build -o $@ $^
7
8 clean:
9 rm -f builder
LEFT RIGHT