From b99a6d465a5a08ea5217d72e8e7a6202b80320d2 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 19 Jan 2011 12:36:52 -0800 Subject: [PATCH] runtime/debug: fix build (missing Makefile) Why does this happen so often? R=rsc CC=golang-dev https://golang.org/cl/4067042 --- src/pkg/runtime/debug/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/pkg/runtime/debug/Makefile diff --git a/src/pkg/runtime/debug/Makefile b/src/pkg/runtime/debug/Makefile new file mode 100644 index 00000000000..885f66aca5e --- /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