mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
stuff
SVN=121190
This commit is contained in:
parent
df8ac28975
commit
f4ccabdea6
2 changed files with 54 additions and 0 deletions
12
src/cmd/clean.bash
Normal file
12
src/cmd/clean.bash
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/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 6l 6a 6c 6g gc cc
|
||||
do
|
||||
cd $i
|
||||
mk clean
|
||||
cd ..
|
||||
done
|
42
src/cmd/make.bash
Normal file
42
src/cmd/make.bash
Normal file
|
@ -0,0 +1,42 @@
|
|||
#!/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.
|
||||
|
||||
|
||||
bash clean.bash
|
||||
|
||||
cd 6l
|
||||
bash mkenam
|
||||
mk enam.o
|
||||
cd ..
|
||||
|
||||
echo; echo; echo %%%% making cc %%%%; echo
|
||||
cd cc
|
||||
mk install
|
||||
cd ..
|
||||
|
||||
echo; echo; echo %%%% making 6l %%%%; echo
|
||||
cd 6l
|
||||
mk install
|
||||
cd ..
|
||||
|
||||
echo; echo; echo %%%% making 6a %%%%; echo
|
||||
cd 6a
|
||||
mk install
|
||||
cd ..
|
||||
|
||||
echo; echo; echo %%%% making 6c %%%%; echo
|
||||
cd 6c
|
||||
mk install
|
||||
cd ..
|
||||
|
||||
echo; echo; echo %%%% making gc %%%%; echo
|
||||
cd gc
|
||||
mk install
|
||||
cd ..
|
||||
|
||||
echo; echo; echo %%%% making 6g %%%%; echo
|
||||
cd 6g
|
||||
mk install
|
||||
cd ..
|
Loading…
Reference in a new issue