aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2011-01-19 12:36:52 -0800
committerRob Pike <r@golang.org>2011-01-19 12:36:52 -0800
commitb99a6d465a5a08ea5217d72e8e7a6202b80320d2 (patch)
treeb327eb3640cb10d2c232cfd931aa72ec60ce5dfb
parent1558834248858f268e5ae8b57a213f373a0f61e0 (diff)
downloadgo-b99a6d465a5a08ea5217d72e8e7a6202b80320d2.tar.gz
go-b99a6d465a5a08ea5217d72e8e7a6202b80320d2.zip
runtime/debug: fix build (missing Makefile)
Why does this happen so often? R=rsc CC=golang-dev https://golang.org/cl/4067042
-rw-r--r--src/pkg/runtime/debug/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pkg/runtime/debug/Makefile b/src/pkg/runtime/debug/Makefile
new file mode 100644
index 0000000000..885f66aca5
--- /dev/null
+++ b/src/pkg/runtime/debug/Makefile
@@ -0,0 +1,11 @@
+# Copyright 2011 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.inc
+
+TARG=runtime/debug
+GOFILES=\
+ stack.go\
+
+include ../../../Make.pkg