aboutsummaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-12-16 17:04:32 -0500
committerRuss Cox <rsc@golang.org>2011-12-16 17:04:32 -0500
commitbd9243da220935ea2a6985777683c0e587563283 (patch)
tree38755072f3d607710dbe3a6c54cac51ab8508c7d /src/make.bash
parent95907c4752b2e8f0e5f75d43031fc914162bb411 (diff)
downloadgo-bd9243da220935ea2a6985777683c0e587563283.tar.xz
runtime: separate out auto-generated files
R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5493063
Diffstat (limited to 'src/make.bash')
-rwxr-xr-xsrc/make.bash8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/make.bash b/src/make.bash
index 3580d2a0bd..21189fe0e6 100755
--- a/src/make.bash
+++ b/src/make.bash
@@ -78,12 +78,18 @@ done
bash "$GOROOT"/src/clean.bash
# pkg builds libcgo and the Go programs in cmd.
-for i in lib9 libbio libmach cmd pkg
+for i in lib9 libbio libmach cmd
do
echo; echo; echo %%%% making $i %%%%; echo
gomake -C $i install
done
+echo; echo; echo %%%% making runtime generated files %%%%; echo
+gomake -C pkg/runtime -f Makefile.auto
+
+echo; echo; echo %%%% making pkg%%%%; echo
+gomake -C pkg install
+
# Print post-install messages.
# Implemented as a function so that all.bash can repeat the output
# after run.bash finishes running all the tests.