diff options
author | Russ Cox <rsc@golang.org> | 2012-02-06 13:34:25 -0500 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2012-02-06 13:34:25 -0500 |
commit | fec7fa8b9deb5f0c08c546ad2ba121d78e104163 (patch) | |
tree | 6da77ebc491bd624387f51e0e73c969636b3503e /src/cmd/pack | |
parent | e335ec98b5f897afee90462bd95cf3cec42e115a (diff) | |
download | go-git-fec7fa8b9deb5f0c08c546ad2ba121d78e104163.tar.gz |
build: delete make paraphernalia
As a convenience to people working on the tools,
leave Makefiles that invoke the go dist tool appropriately.
They are not used during the build.
R=golang-dev, bradfitz, n13m3y3r, gustavo
CC=golang-dev
https://golang.org/cl/5636050
Diffstat (limited to 'src/cmd/pack')
-rw-r--r-- | src/cmd/pack/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/cmd/pack/Makefile b/src/cmd/pack/Makefile index 12909727fc..3f528d7517 100644 --- a/src/cmd/pack/Makefile +++ b/src/cmd/pack/Makefile @@ -1,12 +1,5 @@ -# Copyright 2009 The Go Authors. All rights reserved. +# Copyright 2012 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 -O:=$(HOST_O) - -TARG=pack -OFILES=\ - ar.$O\ - -include ../../Make.ctool +include ../../Make.dist |