Side by Side Diff: src/pkg/debug/proc/Makefile
Issue 4757049 :
code review 4757049: debug/proc: Remove. (Closed)
Patch Set: diff -r 8a1ad8e85973 https://go.googlecode.com/hg/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/pkg/Makefile
src/pkg/debug/proc/Makefile
src/pkg/debug/proc/proc.go
src/pkg/debug/proc/proc_darwin.go
src/pkg/debug/proc/proc_freebsd.go
src/pkg/debug/proc/proc_linux.go
src/pkg/debug/proc/proc_windows.go
src/pkg/debug/proc/ptrace-nptl.txt
src/pkg/debug/proc/regs_darwin_386.go
src/pkg/debug/proc/regs_darwin_amd64.go
src/pkg/debug/proc/regs_freebsd_386.go
src/pkg/debug/proc/regs_freebsd_amd64.go
src/pkg/debug/proc/regs_linux_386.go
src/pkg/debug/proc/regs_linux_amd64.go
src/pkg/debug/proc/regs_linux_arm.go
src/pkg/debug/proc/regs_windows_386.go
src/pkg/debug/proc/regs_windows_amd64.go
OLD NEW
(Empty) 1 # Copyright 2009 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file.
4
5 include ../../../Make.inc
6
7 TARG=debug/proc
8 GOFILES=\
9 proc.go\
10 proc_$(GOOS).go\
11 regs_$(GOOS)_$(GOARCH).go\
12
13 include ../../../Make.pkg
OLD NEW