diff options
| author | Dave Cheney <dave@cheney.net> | 2011-03-01 09:20:32 +1100 |
|---|---|---|
| committer | Andrew Gerrand <adg@golang.org> | 2011-03-01 09:20:32 +1100 |
| commit | 432b4f309b9d2c82c72a18b917cdccb4ec2bd89f (patch) | |
| tree | 24c73d68b446daf0689983e530dd04b3623a69ad /src/cmd/make.bash | |
| parent | 7da86983a8619df20e61531159d6e2f7f1f628bf (diff) | |
| download | go-432b4f309b9d2c82c72a18b917cdccb4ec2bd89f.tar.xz | |
build: convert src/cmd to use make directly and simplify src/make.bash
R=adg, bsiegert, rsc
CC=golang-dev
https://golang.org/cl/4221047
Diffstat (limited to 'src/cmd/make.bash')
| -rwxr-xr-x | src/cmd/make.bash | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/cmd/make.bash b/src/cmd/make.bash deleted file mode 100755 index 63da74625c..0000000000 --- a/src/cmd/make.bash +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env bash -# Copyright 2009 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. - -set -e - -bash clean.bash - -eval $(gomake --no-print-directory -f ../Make.inc go-env) -if [ -z "$O" ]; then - echo 'missing $O - maybe no Make.$GOARCH?' 1>&2 - exit 1 -fi - -cd ${O}l -bash mkenam -gomake enam.o -cd .. - -# Note: commands written in Go are not listed here. -# They are in ../pkg/Makefile so that they can be built -# after the Go libraries on which they depend. -for i in cc ${O}l ${O}a ${O}c gc ${O}g cov godefs gopack gotest nm prof -do - echo; echo; echo %%%% making $i %%%%; echo - cd $i - gomake install - cd .. -done |
