>From reading `mk/targets.mk`, seems like `make update` runs the following:
git checkout $(GIT_BRANCH)
git remote update
git pull
make allI think `make all` also runs `make autoloads`. Personally, my update process is `git pull && make`, because until just now I didn't realize that `make update` was an option. -- Rohit Patnaik
