diff options
| author | Rob Pike <r@golang.org> | 2008-06-11 13:34:08 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2008-06-11 13:34:08 -0700 |
| commit | df28e14e5bff98775e98f3de5f464607a36f2e2f (patch) | |
| tree | 566d33ecd1d0ccb5aabbc00c0fe7e2d197d906f0 /src | |
| parent | 2bba3a610d7d4cb42391b724408c694ff9ebb791 (diff) | |
| download | go-df28e14e5bff98775e98f3de5f464607a36f2e2f.tar.xz | |
add a setup document, and tweak the scripts that it mentions
SVN=122175
Diffstat (limited to 'src')
| -rw-r--r-- | src/cmd/clean.bash | 1 | ||||
| -rwxr-xr-x | src/make.bash | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/cmd/clean.bash b/src/cmd/clean.bash index c42f88394f..73a704c43b 100644 --- a/src/cmd/clean.bash +++ b/src/cmd/clean.bash @@ -3,7 +3,6 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. - for i in 6l 6a 6c 6g gc cc do cd $i diff --git a/src/make.bash b/src/make.bash new file mode 100755 index 0000000000..9a21cfe2da --- /dev/null +++ b/src/make.bash @@ -0,0 +1,11 @@ +#!/bin/bash +# Copyright 2009 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. + +for i in cmd runtime +do + cd $i + bash make.bash + cd .. +done |
