]> Cypherpunks.ru repositories - gostls13.git/blob - src/clean.bash
add gobuild.
[gostls13.git] / src / clean.bash
1 #!/bin/bash
2 # Copyright 2009 The Go Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style
4 # license that can be found in the LICENSE file.
5
6 for i in lib9 libbio libmach_amd64 libregexp syscall cmd runtime lib
7 do
8         cd $i
9         case $i in
10         cmd | lib)
11                 bash clean.bash
12                 ;;
13         *)
14                 make clean
15         esac
16         cd ..
17 done