summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-11-24 15:18:29 -0800
committerRuss Cox <rsc@golang.org>2008-11-24 15:18:29 -0800
commitb88e7055b578aa6b75237838fd1035f06b5f4970 (patch)
treef905c75ca898b01420ec4f51002188cadcebef05
parent6abb679aa1cab006cfceec22b453d2a2289592c7 (diff)
downloadgolang-b88e7055b578aa6b75237838fd1035f06b5f4970.tar.gz
add hash to build; rm pkg/* in clean.bash
R=r DELTA=3 (3 added, 0 deleted, 0 changed) OCL=19935 CL=19937
-rwxr-xr-xsrc/clean.bash1
-rw-r--r--src/lib/Makefile2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/clean.bash b/src/clean.bash
index 143eb0b7a..1beb6a513 100755
--- a/src/clean.bash
+++ b/src/clean.bash
@@ -3,6 +3,7 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
+rm -f $GOROOT/pkg/*.[6a]
for i in lib9 libbio libmach_amd64 libregexp cmd runtime lib
do
cd $i
diff --git a/src/lib/Makefile b/src/lib/Makefile
index 1fea38068..bd65bf0db 100644
--- a/src/lib/Makefile
+++ b/src/lib/Makefile
@@ -9,6 +9,7 @@ GC=6g
DIRS=\
container/array\
fmt\
+ hash\
http\
math\
net\
@@ -86,6 +87,7 @@ io.6: os.dirinstall syscall.dirinstall
testing.6: flag.install fmt.dirinstall
fmt.dirinstall: io.install reflect.dirinstall strconv.dirinstall
+hash.dirinstall: os.dirinstall
http.dirinstall: bufio.install io.install net.dirinstall os.dirinstall strings.install
net.dirinstall: once.install os.dirinstall strconv.dirinstall
os.dirinstall: syscall.dirinstall