1
0
mirror of https://github.com/golang/go synced 2024-10-04 09:21:21 -06:00
go/src/cmd/make.bash
Russ Cox 3f548cd2d9 add gobuild to build
R=r
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=19404
CL=19415
2008-11-17 16:59:04 -08:00

22 lines
376 B
Bash

#!/bin/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 clean.bash
cd 6l
bash mkenam
make enam.o
cd ..
for i in cc 6l 6a 6c gc 6g ar db nm blyacc acid cov gobuild prof
do
echo; echo; echo %%%% making $i %%%%; echo
cd $i
make install
cd ..
done