summaryrefslogtreecommitdiff
path: root/src/pkg/math/Makefile
diff options
context:
space:
mode:
authorCharles L. Dorian <cldorian@gmail.com>2010-01-10 15:41:07 -0800
committerCharles L. Dorian <cldorian@gmail.com>2010-01-10 15:41:07 -0800
commit72ae0ba3836aac5619d281fe24dfbf8c994b6d2a (patch)
tree205b4a5f6086de8335c3e52955f1a57154f2a434 /src/pkg/math/Makefile
parent2db08122e36c137a36ab9768ffceae332c1695f1 (diff)
downloadgolang-72ae0ba3836aac5619d281fe24dfbf8c994b6d2a.tar.gz
math: Sqrt using 386 FPU.
Note: sqrt_decl.go already in src/pkg/math/. R=rsc CC=golang-dev http://codereview.appspot.com/183155 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/pkg/math/Makefile')
-rw-r--r--src/pkg/math/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pkg/math/Makefile b/src/pkg/math/Makefile
index f30f38faf..7a3808976 100644
--- a/src/pkg/math/Makefile
+++ b/src/pkg/math/Makefile
@@ -9,6 +9,9 @@ TARG=math
OFILES_amd64=\
sqrt_amd64.$O\
+OFILES_386=\
+ sqrt_386.$O\
+
OFILES=\
$(OFILES_$(GOARCH))
@@ -29,6 +32,7 @@ ALLGOFILES=\
sin.go\
sinh.go\
sqrt.go\
+ sqrt_port.go\
tan.go\
tanh.go\
unsafe.go\