2020-11-04 19:18:47 +00:00
|
|
|
"""Clean the QMK firmware folder of build artifacts.
|
|
|
|
"""
|
2021-05-09 10:57:49 +00:00
|
|
|
from qmk.commands import run, create_make_target
|
2020-11-04 19:18:47 +00:00
|
|
|
from milc import cli
|
|
|
|
|
|
|
|
|
|
|
|
@cli.argument('-a', '--all', arg_only=True, action='store_true', help='Remove *.hex and *.bin files in the QMK root as well.')
|
|
|
|
@cli.subcommand('Clean the QMK firmware folder of build artifacts.')
|
|
|
|
def clean(cli):
|
|
|
|
"""Runs `make clean` (or `make distclean` if --all is passed)
|
|
|
|
"""
|
2021-05-09 10:57:49 +00:00
|
|
|
run(create_make_target('distclean' if cli.args.all else 'clean'))
|