diff options
Diffstat (limited to 'src/clean.bash')
-rwxr-xr-x | src/clean.bash | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/clean.bash b/src/clean.bash new file mode 100755 index 000000000..6f5da78d5 --- /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 |