Git SubmodulesΒΆ
This repository uses git submodules as external dependencies.
The build system will automatically check-out dependent submodules as part of the build, according to the given configuration. See depend target for further details.
Executing the single command make
will build
a default configuration
and check-out all dependent submodules.
Executing the command make distclean
will deinitialize all the submodules.
Submodules can be checked-out manually with the command:
git modules update --init --recursive
or, when cloning a fresh repo:
git clone --recursive [email protected]/<repository>.git
So that all submodules and dependent recursive modules are checked-out.