aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2021-06-24 22:15:40 +0100
committerJuan J. Martinez <jjm@usebox.net>2021-06-24 22:15:40 +0100
commitf1791380c20e050b62f3f25519c9d8414d6ad903 (patch)
tree5680e46517318adcfa0e24b82f6d078eb77f148b /docs
parent148d72e795264d39d3b49d1d429e252ff74f0e23 (diff)
downloadubox-msx-lib-f1791380c20e050b62f3f25519c9d8414d6ad903.tar.gz
ubox-msx-lib-f1791380c20e050b62f3f25519c9d8414d6ad903.zip
Document mkdeps.py
Diffstat (limited to 'docs')
-rw-r--r--docs/tools.md8
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.