From: Ken Thompson Date: Wed, 4 Jun 2008 23:44:48 +0000 (-0700) Subject: stuff X-Git-Tag: weekly.2009-11-06~3766 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f4ccabdea6ef7266605a44ac5b1c8f2737c95047;p=gostls13.git stuff SVN=121190 --- diff --git a/src/cmd/clean.bash b/src/cmd/clean.bash new file mode 100644 index 0000000000..c42f88394f --- /dev/null +++ b/src/cmd/clean.bash @@ -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 diff --git a/src/cmd/make.bash b/src/cmd/make.bash new file mode 100644 index 0000000000..af84940402 --- /dev/null +++ b/src/cmd/make.bash @@ -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 ..