aboutsummaryrefslogtreecommitdiff
path: root/src/clean.bash
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-06-12 13:26:16 -0700
committerRob Pike <r@golang.org>2008-06-12 13:26:16 -0700
commit69b74c3953eac1a28febb893d1e8e383ffbe5209 (patch)
treef571b5448e5f72870de933c01d9a6dcf04879e85 /src/clean.bash
parenta40a79829ff1b4ba8230d10346f4029674364b17 (diff)
downloadgo-69b74c3953eac1a28febb893d1e8e383ffbe5209.tar.gz
go-69b74c3953eac1a28febb893d1e8e383ffbe5209.zip
import the plan 9 libraries libc (lib9) and libbio into the tree.
remove the dependency on /home/r. SVN=122482
Diffstat (limited to 'src/clean.bash')
-rwxr-xr-xsrc/clean.bash18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/clean.bash b/src/clean.bash
new file mode 100755
index 0000000000..6f5da78d5b
--- /dev/null
+++ b/src/clean.bash
@@ -0,0 +1,18 @@
+#!/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 lib9 libbio
+do
+ cd $i
+ make clean
+ cd ..
+done
+
+for i in cmd runtime
+do
+ cd $i
+ bash clean.bash
+ cd ..
+done