Skip to content

Commit e56bd99

Browse files
committed
Try making BUILDDIR configurable
1 parent 96feaa0 commit e56bd99

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Justfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ bench-cmp:
1717
bench:
1818
uv run pytest bench --benchmark-save base
1919

20-
docs: ## generate Sphinx HTML documentation, including API docs
21-
make -C docs clean
22-
make -C docs doctest
23-
make -C docs html
20+
docs output_dir="_build": ## generate Sphinx HTML documentation, including API docs
21+
make -C docs -e BUILDDIR={{output_dir}} clean
22+
make -C docs -e BUILDDIR={{output_dir}} doctest
23+
make -C docs -e BUILDDIR={{output_dir}} html
2424

2525
htmllive: docs ## compile the docs watching for changes
2626
make -C docs htmllive

0 commit comments

Comments
 (0)