summaryrefslogtreecommitdiff
path: root/src/pkg/log
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-08-12 13:19:17 -0700
committerRuss Cox <rsc@golang.org>2009-08-12 13:19:17 -0700
commit5631bad854b13eda1b9eafe9249ee81afc39e3e8 (patch)
treec9dbc55a8447806706f8ae757a04c3c41b815835 /src/pkg/log
parent00d3aec9c798ffa5b27c50eae9feb8fd382913d3 (diff)
downloadgo-5631bad854b13eda1b9eafe9249ee81afc39e3e8.tar.gz
convert non-low-level non-google pkg code
to whole-package compilation. R=r OCL=33070 CL=33101
Diffstat (limited to 'src/pkg/log')
-rw-r--r--src/pkg/log/Makefile57
-rw-r--r--src/pkg/log/log_test.go1
2 files changed, 4 insertions, 54 deletions
diff --git a/src/pkg/log/Makefile b/src/pkg/log/Makefile
index 4b1c4b5a2..b569c9e9f 100644
--- a/src/pkg/log/Makefile
+++ b/src/pkg/log/Makefile
@@ -2,59 +2,10 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
-# DO NOT EDIT. Automatically generated by gobuild.
-# gobuild -m >Makefile
-
-D=
-
include $(GOROOT)/src/Make.$(GOARCH)
-AR=gopack
-
-default: packages
-
-clean:
- rm -rf *.[$(OS)] *.a [$(OS)].out _obj
-
-test: packages
- gotest
-
-coverage: packages
- gotest
- 6cov -g `pwd` | grep -v '_test\.go:'
-
-%.$O: %.go
- $(GC) -I_obj $*.go
-
-%.$O: %.c
- $(CC) $*.c
-
-%.$O: %.s
- $(AS) $*.s
-
-O1=\
- log.$O\
-
-
-phases: a1
-_obj$D/log.a: phases
-
-a1: $(O1)
- $(AR) grc _obj$D/log.a log.$O
- rm -f $(O1)
-
-
-newpkg: clean
- mkdir -p _obj$D
- $(AR) grc _obj$D/log.a
-
-$(O1): newpkg
-$(O2): a1
-
-nuke: clean
- rm -f $(GOROOT)/pkg/$(GOOS)_$(GOARCH)$D/log.a
-packages: _obj$D/log.a
+TARG=log
+GOFILES=\
+ log.go\
-install: packages
- test -d $(GOROOT)/pkg && mkdir -p $(GOROOT)/pkg/$(GOOS)_$(GOARCH)$D
- cp _obj$D/log.a $(GOROOT)/pkg/$(GOOS)_$(GOARCH)$D/log.a
+include $(GOROOT)/src/Make.pkg
diff --git a/src/pkg/log/log_test.go b/src/pkg/log/log_test.go
index e346b3b58..12f732632 100644
--- a/src/pkg/log/log_test.go
+++ b/src/pkg/log/log_test.go
@@ -8,7 +8,6 @@ package log
import (
"bufio";
- "log";
"os";
"regexp";
"testing";