]> Cypherpunks.ru repositories - gostls13.git/blob - src/clean.bash
plan9 line numbers and line table
[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
7 do
8         cd $i
9         make clean
10         cd ..
11 done
12
13 for i in cmd runtime
14 do
15         cd $i
16         bash clean.bash
17         cd ..
18 done