Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
9a04cba8
Commit
9a04cba8
authored
Aug 25, 2010
by
Martin Neubauer
Committed by
Russ Cox
Aug 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/pkg/Makefile: delete use of QUOTED_GOBIN
R=rsc CC=golang-dev
https://golang.org/cl/1997044
parent
0c65748e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
13 deletions
+5
-13
Makefile
src/pkg/Makefile
+5
-13
No files found.
src/pkg/Makefile
View file @
9a04cba8
...
...
@@ -9,14 +9,6 @@
#
# to rebuild the dependency information in Make.deps.
nullstring
:=
space
:=
$(nullstring)
# a space at the end
ifndef
GOBIN
QUOTED_HOME
=
$
(
subst
$(space)
,
\
,
$(HOME)
)
GOBIN
=
$(QUOTED_HOME)
/bin
endif
QUOTED_GOBIN
=
$
(
subst
$(space)
,
\
,
$(GOBIN)
)
all
:
install
DIRS
=
\
...
...
@@ -190,19 +182,19 @@ test.dirs: $(addsuffix .test, $(TEST))
bench.dirs
:
$(addsuffix .bench
,
$(BENCH))
%.clean
:
+cd
$*
&&
$(QUOTED_GOBIN)
/
gomake clean
+cd
$*
&&
gomake clean
%.install
:
+cd
$*
&&
$(QUOTED_GOBIN)
/
gomake
install
+cd
$*
&&
gomake
install
%.nuke
:
+cd
$*
&&
$(QUOTED_GOBIN)
/
gomake nuke
+cd
$*
&&
gomake nuke
%.test
:
+cd
$*
&&
$(QUOTED_GOBIN)
/
gomake
test
+cd
$*
&&
gomake
test
%.bench
:
+cd
$*
&&
$(QUOTED_GOBIN)
/
gomake bench
+cd
$*
&&
gomake bench
clean
:
clean.dirs
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment