add a setup document, and tweak the scripts that it mentions

SVN=122175
This commit is contained in:
Rob Pike 2008-06-11 13:34:08 -07:00
parent 2bba3a610d
commit df28e14e5b
2 changed files with 11 additions and 1 deletions

View file

@ -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

11
src/make.bash Executable file
View file

@ -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