diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-05-09 14:33:45 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-05-09 14:33:45 +0200 |
commit | 6cd517eee582d797d766f3ed8dfbfb8c107eed7c (patch) | |
tree | 0595b0d9fdfcf2604c531d2cbe87de76bf06d586 | |
parent | 71ccdd927073d9c4f16ab44461a7c67cdffd9e12 (diff) |
Add an unimplemented manstall target
-rw-r--r-- | make.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -88,6 +88,8 @@ main(int argc, char **argv) "bool-props.py", ")", "-exec", "{}", ";"); } else if (streq(*argv, "test")) cmdadd(&c, "./test/run-tests"); + else if (streq(*argv, "manstall")) + diex("TODO: not implemented"); else diex("invalid subcommand ā ā%sā", *argv); cmdput(c); |