aboutsummaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
Diffstat (limited to 'make.c')
-rw-r--r--make.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/make.c b/make.c
index 1e5301c..32463b2 100644
--- a/make.c
+++ b/make.c
@@ -103,8 +103,9 @@ main(int argc, char **argv)
} else if (streq(*argv, "clean")) {
cmd_t c = {0};
cmdadd(&c, "find", ".", "-type", "f", "(", "-name", "*.[ao]", "-or",
- "-name", "ahoy", "-or", "-name", "c8asm", "-or", "-path",
- "./src/c8asm/autogen-lookup.h", ")", "-delete");
+ "-name", "ahoy", "-or", "-name", "c8asm", "-or", "-name",
+ "c8dump", "-or", "-path", "./src/c8asm/autogen-lookup.h", ")",
+ "-delete");
CMDPRC(c);
} else {
warnx("invalid subcommand -- '%s'", *argv);