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
34191d94
Commit
34191d94
authored
Jan 25, 2010
by
Christopher Wedgwood
Committed by
Russ Cox
Jan 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove top-level (src/) Makefile.
R=rsc, dho, r CC=golang-dev
https://golang.org/cl/194045
parent
1cecac81
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
20 deletions
+9
-20
install.html
doc/install.html
+2
-2
Makefile
src/Makefile
+0
-16
all.bash
src/all.bash
+7
-2
No files found.
doc/install.html
View file @
34191d94
...
...
@@ -208,11 +208,11 @@ To build the Go distribution, run
<pre>
$ cd $GOROOT/src
$
make all
$
./all.bash
</pre>
<p>
If
<code>
make all
</code>
goes well, it will finish by printing
If
all
goes well, it will finish by printing
</p>
<pre>
...
...
src/Makefile
deleted
100644 → 0
View file @
1cecac81
# GNU Make syntax:
nullstring
:=
space
:=
$(nullstring)
# a space at the end
QUOTED_GOROOT
=
$
(
subst
$(space)
,
\
,
$(GOROOT)
)
all
:
build run
build
:
bash
$(QUOTED_GOROOT)
/src/make.bash
run
:
bash
$(QUOTED_GOROOT)
/src/run.bash
clean
:
bash
$(QUOTED_GOROOT)
/src/clean.bash
src/all.bash
View file @
34191d94
#!/bin/sh
exec
make all
#!/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 make.bash
bash run.bash
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