scripts/completions/_makekconfig.py.zsh
Anna Schumaker 27245b3c70 Add a script for doing my kconfig walk builds
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
2021-11-29 12:07:47 -05:00

12 lines
269 B
Bash

#compdef makekconfig.py
function _makekconfig.py() {
_arguments \
{-h,--help}'[print help text]' \
{-q,--quick}'[only compile the subdirectory containing the Kconfig file]' \
'1:Kconfig:_files -g "**/Kconfig"' \
'*:Make Options:_make'
}
_makekconfig.py "$@"