From 0e8264fa099a46da94696f063d5d81c258d667ae Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Sun, 31 Dec 2023 21:33:01 -0800 Subject: [PATCH] Adding clean target. --- tools/configure.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/configure.py b/tools/configure.py index c00f136..bebe961 100755 --- a/tools/configure.py +++ b/tools/configure.py @@ -212,6 +212,12 @@ rule gen_run description = GEN_RUN command = $script $options $infiles >$out +rule clean + description = CLEAN + command = ninja -t clean + +build clean: clean + """