Commit ddde7f66 authored by Devon H. O'Dell's avatar Devon H. O'Dell Committed by Russ Cox

Add a Makefile in place of all.bash. Update docs to reflect

this change.

R=rsc
CC=golang-dev
https://golang.org/cl/171048
parent 7835b799
...@@ -130,8 +130,8 @@ cd $GOROOT/src/pkg ...@@ -130,8 +130,8 @@ cd $GOROOT/src/pkg
</pre> </pre>
<p> <p>
to update the dependency file <code>Make.deps</code>. to update the dependency file <code>Make.deps</code>.
(This happens automatically each time you run <code>all.bash</code> (This happens automatically each time you run <code>make all</code>
or <code>make.bash</code>.) or <code>make build</code>.)
</p> </p>
<p> <p>
......
...@@ -21,11 +21,11 @@ tree to make sure the changes don't break other packages or programs: ...@@ -21,11 +21,11 @@ tree to make sure the changes don't break other packages or programs:
<pre> <pre>
cd $GOROOT/src cd $GOROOT/src
./all.bash make all
</pre> </pre>
<p> <p>
The final line printed by <code>all.bash</code> should be of the form: The final line printed by <code>make all</code> should be of the form:
</p> </p>
<pre> <pre>
......
...@@ -211,11 +211,11 @@ is in your <code>$PATH</code> and then run ...@@ -211,11 +211,11 @@ is in your <code>$PATH</code> and then run
<pre> <pre>
$ cd $GOROOT/src $ cd $GOROOT/src
$ ./all.bash $ make all
</pre> </pre>
<p> <p>
If <code>all.bash</code> goes well, it will finish by printing If <code>make all</code> goes well, it will finish by printing
</p> </p>
<pre> <pre>
......
all: build run
build:
bash $(GOROOT)/src/make.bash
run:
bash $(GOROOT)/src/run.bash
clean:
bash $(GOROOT)/src/clean.bash
#!/usr/bin/env bash #!/bin/sh
# Copyright 2009 The Go Authors. All rights reserved. exec make all
# 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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment