The clean target deletes the build directory, but it's only created by
the docs generation target, which is not normally invoked by a build.
---
Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/Makefile b/Makefile
index fc65ccf..9aea139 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,7 @@ rm-docs:
rm -rf src/fennel-ls/docs/
build/fennel-ls.1:
+ mkdir -p build/
echo ".TH FENNEL-LS 1" > $@
pandoc --title-prefix=fennel-ls -t man docs/manual.md >> $@
echo ".SH LICENSE\nCopyright © 2023-2025, Released under the MIT/X11 license" >> $@
--
2.39.5 (Apple Git-154)
Michele Campeotto <micampe@micampe.it> writes:
> The clean target deletes the build directory, but it's only created by
> the docs generation target, which is not normally invoked by a build.
Yep, good catch. Thanks.
-Phil