Commit eab46c6e authored by Rob Pike's avatar Rob Pike

include math in standard build

R=ken
OCL=14811
CL=14811
parent 9dbaab54
...@@ -5,3 +5,7 @@ ...@@ -5,3 +5,7 @@
#!/bin/bash #!/bin/bash
rm -f $GOROOT/pkg/* rm -f $GOROOT/pkg/*
cd math
bash clean.bash
cd ..
...@@ -13,3 +13,10 @@ do ...@@ -13,3 +13,10 @@ do
echo 6g -o $GOROOT/pkg/$base.6 $i echo 6g -o $GOROOT/pkg/$base.6 $i
6g -o $GOROOT/pkg/$base.6 $i 6g -o $GOROOT/pkg/$base.6 $i
done done
echo; echo; echo %%%% making lib/math %%%%; echo
cd math
bash make.bash
cd ..
# 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.
#!/bin/bash
rm -f 6.out *.6 math.a
# 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.
#!/bin/bash
# should probably just be a makefile
bash g1 && cp math.a $GOROOT/pkg/math.a
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment