diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/make-arm.bash | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/make-arm.bash b/src/make-arm.bash index 414719a53..759454156 100755 --- a/src/make-arm.bash +++ b/src/make-arm.bash @@ -50,6 +50,8 @@ fi (echo '#!/bin/sh'; echo 'exec '$MAKE' "$@"') >$GOBIN/gomake chmod +x $GOBIN/gomake +bash clean.bash + # TODO(kaib): converge with normal build #for i in lib9 libbio libmach cmd pkg libcgo cmd/cgo cmd/ebnflint cmd/godoc cmd/gofmt for i in lib9 libbio libmach cmd pkg cmd/ebnflint cmd/godoc cmd/gofmt @@ -65,6 +67,10 @@ do cmd) bash make.bash ;; + pkg) + bash deps.bash + gomake install + ;; *) make install esac |