aboutsummaryrefslogtreecommitdiff
path: root/src/Make.dist
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-02-06 13:34:25 -0500
committerRuss Cox <rsc@golang.org>2012-02-06 13:34:25 -0500
commitfec7fa8b9deb5f0c08c546ad2ba121d78e104163 (patch)
tree6da77ebc491bd624387f51e0e73c969636b3503e /src/Make.dist
parente335ec98b5f897afee90462bd95cf3cec42e115a (diff)
downloadgo-fec7fa8b9deb5f0c08c546ad2ba121d78e104163.tar.gz
go-fec7fa8b9deb5f0c08c546ad2ba121d78e104163.zip
build: delete make paraphernalia
As a convenience to people working on the tools, leave Makefiles that invoke the go dist tool appropriately. They are not used during the build. R=golang-dev, bradfitz, n13m3y3r, gustavo CC=golang-dev https://golang.org/cl/5636050
Diffstat (limited to 'src/Make.dist')
-rw-r--r--src/Make.dist15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Make.dist b/src/Make.dist
new file mode 100644
index 0000000000..78e6edf04e
--- /dev/null
+++ b/src/Make.dist
@@ -0,0 +1,15 @@
+# Copyright 2012 The Go Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style
+# license that can be found in the LICENSE file.
+
+# Run go tool dist to install a command.
+# The -vv causes dist to print each build command as it runs.
+# go tool dist clean cleans all directories, not just this one,
+# but it's as close as we can get.
+
+# Default target (first).
+install:
+ go tool dist install -vv
+
+clean:
+ go tool dist clean