Side by Side Diff: src/cmd/ebnflint/Makefile
Issue 171044 :
Remove GOBIN in PATH dependency; don't assume cwd is $G... (Closed)
Patch Set: code review 171044: Remove GOBIN in PATH dependency; don't assume cwd is $G...
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
doc/install.html
doc/progs/run
misc/cgo/stdio/Makefile
misc/cgo/stdio/test.bash
src/Make.cmd
src/Make.conf
src/Make.pkg
src/Makefile
src/clean.bash
src/cmd/clean.bash
src/cmd/ebnflint/Makefile
src/cmd/gc/mkbuiltin
src/cmd/gotest/gotest
src/cmd/make.bash
src/make.bash
src/make-arm.bash
src/pkg/exp/eval/test.bash
src/pkg/exp/ogle/Makefile
src/pkg/runtime/Makefile
src/run.bash
test/bench/timing.sh
OLD NEW
1 # Copyright 2009 The Go Authors. All rights reserved. 1 # Copyright 2009 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style 2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file. 3 # license that can be found in the LICENSE file.
4 4
5 include ../../Make.$(GOARCH) 5 include ../../Make.$(GOARCH)
6 6
7 TARG=ebnflint 7 TARG=ebnflint
8 GOFILES=\ 8 GOFILES=\
9 ebnflint.go\ 9 ebnflint.go\
10 10
11 include ../../Make.cmd 11 include ../../Make.cmd
12 12
13 test: $(TARG) 13 test: $(TARG)
14 » $(TARG) -start="SourceFile" "$(GOROOT)"/doc/go_spec.html 14 » $(QUOTED_GOBIN)/$(TARG) -start="SourceFile" "$(GOROOT)"/doc/go_spec.html
15 15
OLD NEW