build: remove depdenency on GNU make

LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://golang.org/cl/84920043
This commit is contained in:
Andrew Gerrand 2014-04-07 11:34:35 +10:00
parent 844ec6bbe3
commit 3929967156
3 changed files with 2 additions and 11 deletions

View File

@ -1,10 +0,0 @@
# Copyright 2010 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.
all: index.html
CLEANFILES=get.bin final.bin a.out
clean:
rm -f $(CLEANFILES)

View File

@ -11,6 +11,8 @@ cleanup() {
}
trap cleanup 0 INT
rm -f get.bin final.bin a.out
# If called with -all, check that all code snippets compile.
if [ "$1" == "-all" ]; then
for fn in *.go; do

View File

@ -166,7 +166,6 @@ time ./run || exit 1
[ "$GOARCH" == arm ] || # uses network, fails under QEMU
(xcd ../doc/articles/wiki
make clean || exit 1
./test.bash || exit 1
) || exit $?