From 7725d813c9cf1a47863e325457b13a4542984eda Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Sun, 9 May 2021 11:57:49 +0100 Subject: Allow MAKE environment override for 'qmk clean' (#12473) --- lib/python/qmk/cli/clean.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'lib/python/qmk/cli/clean.py') diff --git a/lib/python/qmk/cli/clean.py b/lib/python/qmk/cli/clean.py index ec6501b760..9096529fde 100644 --- a/lib/python/qmk/cli/clean.py +++ b/lib/python/qmk/cli/clean.py @@ -1,16 +1,12 @@ """Clean the QMK firmware folder of build artifacts. """ -from qmk.commands import run +from qmk.commands import run, create_make_target from milc import cli -import shutil - @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) """ - make_cmd = 'gmake' if shutil.which('gmake') else 'make' - - run([make_cmd, 'distclean' if cli.args.all else 'clean']) + run(create_make_target('distclean' if cli.args.all else 'clean')) -- cgit v1.2.3