summaryrefslogtreecommitdiff
path: root/src/pkg/http/pprof/Makefile
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-03-24 09:40:09 -0700
committerRuss Cox <rsc@golang.org>2010-03-24 09:40:09 -0700
commit555f59fbaa0b3cb086c62be60f5f460205a63167 (patch)
tree881a840ee1f85e3047ae2629fbe9db5f448d3411 /src/pkg/http/pprof/Makefile
parentc4c6e15a37fb226ff214ad727b64097832a7d2c9 (diff)
downloadgo-555f59fbaa0b3cb086c62be60f5f460205a63167.tar.gz
runtime: malloc sampling, pprof interface
R=r CC=golang-dev http://codereview.appspot.com/719041
Diffstat (limited to 'src/pkg/http/pprof/Makefile')
-rw-r--r--src/pkg/http/pprof/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pkg/http/pprof/Makefile b/src/pkg/http/pprof/Makefile
new file mode 100644
index 000000000..e0315112f
--- /dev/null
+++ b/src/pkg/http/pprof/Makefile
@@ -0,0 +1,11 @@
+# Copyright 2010 The Go Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style
+# license that can be found in the LICENSE file.
+
+include ../../../Make.$(GOARCH)
+
+TARG=http/pprof
+GOFILES=\
+ pprof.go\
+
+include ../../../Make.pkg