]> Cypherpunks repositories - gostls13.git/commitdiff
add a setup document, and tweak the scripts that it mentions
authorRob Pike <r@golang.org>
Wed, 11 Jun 2008 20:34:08 +0000 (13:34 -0700)
committerRob Pike <r@golang.org>
Wed, 11 Jun 2008 20:34:08 +0000 (13:34 -0700)
SVN=122175

src/cmd/clean.bash
src/make.bash [new file with mode: 0755]

index c42f88394f293ad4931dcf88811a9f65b150efde..73a704c43ba1c556963d68096ded9f3731d0159c 100644 (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
diff --git a/src/make.bash b/src/make.bash
new file mode 100755 (executable)
index 0000000..9a21cfe
--- /dev/null
@@ -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