diff options
author | Russ Cox <rsc@golang.org> | 2008-11-19 09:40:54 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2008-11-19 09:40:54 -0800 |
commit | 8987f2ade6feae37a9f3dbfb6abe05cee001755a (patch) | |
tree | bc3f19b52d3307ce5566e539708dce3361785f8c | |
parent | b8690c78f0683ae39241db2604fc0ba9f0b81f1a (diff) | |
download | golang-8987f2ade6feae37a9f3dbfb6abe05cee001755a.tar.gz |
leave 6.out around after gotest;
delete it in make clean.
R=r
DELTA=10 (0 added, 0 deleted, 10 changed)
OCL=19542
CL=19581
-rw-r--r-- | src/cmd/gobuild/gobuild.c | 2 | ||||
-rwxr-xr-x | src/cmd/gotest/gotest | 2 | ||||
-rw-r--r-- | src/lib/fmt/Makefile | 2 | ||||
-rw-r--r-- | src/lib/http/Makefile | 2 | ||||
-rw-r--r-- | src/lib/math/Makefile | 2 | ||||
-rw-r--r-- | src/lib/net/Makefile | 2 | ||||
-rw-r--r-- | src/lib/os/Makefile | 2 | ||||
-rw-r--r-- | src/lib/reflect/Makefile | 2 | ||||
-rw-r--r-- | src/lib/strconv/Makefile | 2 | ||||
-rw-r--r-- | src/lib/syscall/Makefile | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/cmd/gobuild/gobuild.c b/src/cmd/gobuild/gobuild.c index 6605b0526..f0ba6f671 100644 --- a/src/cmd/gobuild/gobuild.c +++ b/src/cmd/gobuild/gobuild.c @@ -280,7 +280,7 @@ char preamble[] = "default: packages\n" "\n" "clean:\n" - "\trm -f *.$O *.a\n" + "\trm -f *.$O *.a $O.out\n" "\n" "test: packages\n" "\tgotest\n" diff --git a/src/cmd/gotest/gotest b/src/cmd/gotest/gotest index 1980dc685..85699547b 100755 --- a/src/cmd/gotest/gotest +++ b/src/cmd/gotest/gotest @@ -41,7 +41,7 @@ done set -e # They all compile; now generate the code to call them. -trap "rm -f _testmain.go _testmain.6 6.out" 0 1 2 3 14 15 +trap "rm -f _testmain.go _testmain.6" 0 1 2 3 14 15 { # package spec echo 'package main' diff --git a/src/lib/fmt/Makefile b/src/lib/fmt/Makefile index 03fdff84c..bdef02d69 100644 --- a/src/lib/fmt/Makefile +++ b/src/lib/fmt/Makefile @@ -13,7 +13,7 @@ AR=$(O)ar default: packages clean: - rm -f *.$O *.a + rm -f *.$O *.a $O.out test: packages gotest diff --git a/src/lib/http/Makefile b/src/lib/http/Makefile index 75ab68d7d..0827008f9 100644 --- a/src/lib/http/Makefile +++ b/src/lib/http/Makefile @@ -13,7 +13,7 @@ AR=$(O)ar default: packages clean: - rm -f *.$O *.a + rm -f *.$O *.a $O.out test: packages gotest diff --git a/src/lib/math/Makefile b/src/lib/math/Makefile index 56cd9d046..d5318a60a 100644 --- a/src/lib/math/Makefile +++ b/src/lib/math/Makefile @@ -13,7 +13,7 @@ AR=$(O)ar default: packages clean: - rm -f *.$O *.a + rm -f *.$O *.a $O.out test: packages gotest diff --git a/src/lib/net/Makefile b/src/lib/net/Makefile index 52ff320e4..1670e5ac3 100644 --- a/src/lib/net/Makefile +++ b/src/lib/net/Makefile @@ -13,7 +13,7 @@ AR=$(O)ar default: packages clean: - rm -f *.$O *.a + rm -f *.$O *.a $O.out test: packages gotest diff --git a/src/lib/os/Makefile b/src/lib/os/Makefile index ed4a36bbb..d359b232e 100644 --- a/src/lib/os/Makefile +++ b/src/lib/os/Makefile @@ -13,7 +13,7 @@ AR=$(O)ar default: packages clean: - rm -f *.$O *.a + rm -f *.$O *.a $O.out test: packages gotest diff --git a/src/lib/reflect/Makefile b/src/lib/reflect/Makefile index 729a81986..90aadda42 100644 --- a/src/lib/reflect/Makefile +++ b/src/lib/reflect/Makefile @@ -13,7 +13,7 @@ AR=$(O)ar default: packages clean: - rm -f *.$O *.a + rm -f *.$O *.a $O.out test: packages gotest diff --git a/src/lib/strconv/Makefile b/src/lib/strconv/Makefile index e5c4d1d1d..6718dc3f5 100644 --- a/src/lib/strconv/Makefile +++ b/src/lib/strconv/Makefile @@ -13,7 +13,7 @@ AR=$(O)ar default: packages clean: - rm -f *.$O *.a + rm -f *.$O *.a $O.out test: packages gotest diff --git a/src/lib/syscall/Makefile b/src/lib/syscall/Makefile index 58d483a9d..a35be213a 100644 --- a/src/lib/syscall/Makefile +++ b/src/lib/syscall/Makefile @@ -15,7 +15,7 @@ AR=$(O)ar default: packages clean: - rm -f *.$O *.a + rm -f *.$O *.a $O.out test: packages gotest |