diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-06-24 22:15:40 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-06-24 22:15:40 +0100 |
commit | f1791380c20e050b62f3f25519c9d8414d6ad903 (patch) | |
tree | 5680e46517318adcfa0e24b82f6d078eb77f148b /docs | |
parent | 148d72e795264d39d3b49d1d429e252ff74f0e23 (diff) | |
download | ubox-msx-lib-f1791380c20e050b62f3f25519c9d8414d6ad903.tar.gz ubox-msx-lib-f1791380c20e050b62f3f25519c9d8414d6ad903.zip |
Document mkdeps.py
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tools.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/tools.md b/docs/tools.md index 83f80f3..6edd28b 100644 --- a/docs/tools.md +++ b/docs/tools.md @@ -225,5 +225,11 @@ report it with an error. ### mkdeps.py -TODO +This is a wrapper around `sdcc -MM` to automatically generate a `Makefile.deps` +with the dependencies to build a project. + +This ensures that only the required files are compiled when there is a change +in the project, reducing the compilation time during development. + +See `game/Makefile` for an example. |