diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-01-04 07:45:30 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-01-04 07:45:44 +0000 |
commit | 36fbd6c0286dbb2381b574b444d1ffe50892cf86 (patch) | |
tree | 940c35986e9bcf726b82f53c88228447886f632b /tools | |
parent | ccdbd783ef2dcec5249418ed1dea019471c94514 (diff) | |
download | ubox-msx-lib-36fbd6c0286dbb2381b574b444d1ffe50892cf86.tar.gz ubox-msx-lib-36fbd6c0286dbb2381b574b444d1ffe50892cf86.zip |
Better help
Include will be used once, but multiple directories can be provided
using : as separator; e.g. -I dir1:dir2:dir3
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/mkdeps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkdeps.py b/tools/mkdeps.py index 0b3f4b0..e0b2a10 100755 --- a/tools/mkdeps.py +++ b/tools/mkdeps.py @@ -24,7 +24,7 @@ def main(): parser.add_argument("-b", "--build-dir", dest="build", default=None, type=str, help="Directory to build") parser.add_argument("-I", "--include", dest="include", default=None, type=str, - help="Include directory") + help="Include directory (for multiple directories, use : as separator)") parser.add_argument("-v", "--verbose", dest="verbose", action="store_true", help="Enable verbose output") |