aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/Makefile
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-01-22 16:23:44 -0800
committerRuss Cox <rsc@golang.org>2009-01-22 16:23:44 -0800
commit1f8a40d85c3bb7a1cf3113e7ab1afdb44f6c0e4d (patch)
treeece2442553c8681e8134d2201e6201e1e429adb8 /src/runtime/Makefile
parent8c5bc7e93adae7546b4f1520d1b20f18ebe95d88 (diff)
downloadgo-1f8a40d85c3bb7a1cf3113e7ab1afdb44f6c0e4d.tar.gz
go-1f8a40d85c3bb7a1cf3113e7ab1afdb44f6c0e4d.zip
move math routines from package sys to package math,
though they still build in src/runtime. use cgo instead of hand-written wrappers. R=r DELTA=740 (289 added, 300 deleted, 151 changed) OCL=23326 CL=23331
Diffstat (limited to 'src/runtime/Makefile')
-rw-r--r--src/runtime/Makefile15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/runtime/Makefile b/src/runtime/Makefile
index f62229fd2c..03633a61d3 100644
--- a/src/runtime/Makefile
+++ b/src/runtime/Makefile
@@ -17,23 +17,26 @@ LIBOFILES=\
rt1_$(GOARCH)_$(GOOS).$O\
rt2_$(GOARCH).$O\
sys_$(GOARCH)_$(GOOS).$O\
- runtime.$O\
- hashmap.$O\
+ array.$O\
chan.$O\
+ float.$O\
+ float_go.$O\
+ hashmap.$O\
iface.$O\
- array.$O\
- mem.$O\
malloc.$O\
malloc_go.$O\
mcache.$O\
mcentral.$O\
+ mem.$O\
mfixalloc.$O\
mheap.$O\
msize.$O\
print.$O\
- rune.$O\
proc.$O\
+ rune.$O\
+ runtime.$O\
sema.$O\
+ sema_go.$O\
string.$O\
symtab.$O\
@@ -69,7 +72,7 @@ cgo2c: cgo2c.c
quietgcc -o $@ $<
%.c: %.cgo cgo2c
- ./cgo2c < $< > $@.tmp
+ ./cgo2c $< > $@.tmp
mv -f $@.tmp $@
%.$O: %.s