aboutsummaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
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