aboutsummaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-06-11 13:34:08 -0700
committerRob Pike <r@golang.org>2008-06-11 13:34:08 -0700
commitdf28e14e5bff98775e98f3de5f464607a36f2e2f (patch)
tree566d33ecd1d0ccb5aabbc00c0fe7e2d197d906f0 /src/make.bash
parent2bba3a610d7d4cb42391b724408c694ff9ebb791 (diff)
downloadgo-df28e14e5bff98775e98f3de5f464607a36f2e2f.tar.xz
add a setup document, and tweak the scripts that it mentions
SVN=122175
Diffstat (limited to 'src/make.bash')
-rwxr-xr-xsrc/make.bash11
1 files changed, 11 insertions, 0 deletions
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