aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/Makefile
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-03-24 16:04:25 -0700
committerRuss Cox <rsc@golang.org>2009-03-24 16:04:25 -0700
commit85e014a27ef0a640a33f58bc412b3fa5bcc4a800 (patch)
tree3d7d1ea6e1cc0c9be6d77e5f8e568694ac104a3b /src/runtime/Makefile
parent80f4ab47ee781a32368dcccd063c6482a97b159c (diff)
downloadgo-85e014a27ef0a640a33f58bc412b3fa5bcc4a800.tar.gz
go-85e014a27ef0a640a33f58bc412b3fa5bcc4a800.zip
fix build:
install runtime lib in correct location. fix one bad type definition in defs.h. clear out $GOROOT/lib in clean.bash. TBR=r OCL=26691 CL=26691
Diffstat (limited to 'src/runtime/Makefile')
-rw-r--r--src/runtime/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runtime/Makefile b/src/runtime/Makefile
index 5bf0dbbea8..633576755b 100644
--- a/src/runtime/Makefile
+++ b/src/runtime/Makefile
@@ -26,6 +26,7 @@ OFILES=\
mfixalloc.$O\
mgc0.$O\
mheap.$O\
+ mheapmap64.$O\
msize.$O\
print.$O\
proc.$O\
@@ -49,7 +50,7 @@ HFILES=\
$(GOOS)/$(GOARCH)/defs.h\
install: $(LIB) runtime.acid
- cp $(LIB) $(GOROOT)/lib_$(GOARCH)_$(GOOS).a
+ cp $(LIB) $(GOROOT)/lib/lib_$(GOARCH)_$(GOOS).a
cp runtime.acid $(GOROOT)/acid/runtime.acid
$(LIB): $(OFILES)