aboutsummaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-05-09 14:33:45 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-05-09 14:33:45 +0200
commit6cd517eee582d797d766f3ed8dfbfb8c107eed7c (patch)
tree0595b0d9fdfcf2604c531d2cbe87de76bf06d586 /make.c
parent71ccdd927073d9c4f16ab44461a7c67cdffd9e12 (diff)
Add an unimplemented manstall target
Diffstat (limited to 'make.c')
-rw-r--r--make.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/make.c b/make.c
index ed30e5d..2912f2b 100644
--- a/make.c
+++ b/make.c
@@ -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);