blob: cae892de9cab2e118df8b03dc3ca83dcc16f39b4 [file] [log] [blame]
Russ Coxfec7fa82012-02-06 13:34:25 -05001# Copyright 2012 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# Run go tool dist to install a command.
Russ Cox596840a2012-02-08 15:26:47 -05006# The -v causes dist to print the name of each directory as it runs.
Russ Coxfec7fa82012-02-06 13:34:25 -05007# The -vv causes dist to print each build command as it runs.
8# go tool dist clean cleans all directories, not just this one,
9# but it's as close as we can get.
10
11# Default target (first).
12install:
Russ Cox596840a2012-02-08 15:26:47 -050013 go tool dist install -v
14
15verbose:
Russ Coxfec7fa82012-02-06 13:34:25 -050016 go tool dist install -vv
17
18clean:
19 go tool dist clean