diff options
| author | Rob Pike <r@golang.org> | 2008-09-11 13:03:46 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2008-09-11 13:03:46 -0700 |
| commit | c80b06a54ee198f0146b673205006a9a8b82c34c (patch) | |
| tree | 763617ba82fc9aa9c91c13f29ba2c2b066d1b360 /src/make.bash | |
| parent | c7ebfed65567b9ac4a429bc87c48c29577a577b7 (diff) | |
| download | go-c80b06a54ee198f0146b673205006a9a8b82c34c.tar.xz | |
add lib/os to standard build
break lib/os into multiple source files
R=rsc
DELTA=189 (178 added, 4 deleted, 7 changed)
OCL=15149
CL=15152
Diffstat (limited to 'src/make.bash')
| -rwxr-xr-x | src/make.bash | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/make.bash b/src/make.bash index f2543b553d..5eeb370a1b 100755 --- a/src/make.bash +++ b/src/make.bash @@ -12,7 +12,7 @@ do cd .. done -for i in cmd runtime lib +for i in cmd runtime do cd $i bash make.bash @@ -27,3 +27,10 @@ do make install cd .. done + +for i in lib +do + cd $i + bash make.bash + cd .. +done |
