diff options
author | Andrew Gerrand <adg@golang.org> | 2014-04-07 11:34:35 +1000 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2014-04-07 11:34:35 +1000 |
commit | 9b407f72daea7642ee78db13091f73053d897bfc (patch) | |
tree | 12bf1a0f573ea0bcda79eb937a0adee182af8389 /doc/articles | |
parent | fad795b6b6dbe7025c4bb767ce0002e44d00c65d (diff) | |
download | go-9b407f72daea7642ee78db13091f73053d897bfc.tar.gz |
build: remove depdenency on GNU make
LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://codereview.appspot.com/84920043
Diffstat (limited to 'doc/articles')
-rw-r--r-- | doc/articles/wiki/Makefile | 10 | ||||
-rwxr-xr-x | doc/articles/wiki/test.bash | 2 |
2 files changed, 2 insertions, 10 deletions
diff --git a/doc/articles/wiki/Makefile b/doc/articles/wiki/Makefile deleted file mode 100644 index 67563bc09..000000000 --- a/doc/articles/wiki/Makefile +++ /dev/null @@ -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) diff --git a/doc/articles/wiki/test.bash b/doc/articles/wiki/test.bash index 46c357ebd..2997f1680 100755 --- a/doc/articles/wiki/test.bash +++ b/doc/articles/wiki/test.bash @@ -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 |