We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78c7ca3 commit 085c078Copy full SHA for 085c078
Makefile
@@ -4,6 +4,7 @@ PACKAGE := postgres
4
GET_DEPENDENCIES_WITH := corral fetch
5
CLEAN_DEPENDENCIES_WITH := corral clean
6
COMPILE_WITH := corral run -- ponyc
7
+BUILD_DOCS_WITH := corral run -- pony-doc
8
9
BUILD_DIR ?= build/$(config)
10
COVERAGE_DIR ?= build/coverage
@@ -70,7 +71,7 @@ clean:
70
71
$(docs_dir): $(SOURCE_FILES)
72
rm -rf $(docs_dir)
73
$(GET_DEPENDENCIES_WITH)
- $(PONYC) --docs-public --pass=docs --output build $(SRC_DIR)
74
+ $(BUILD_DOCS_WITH) --output build $(SRC_DIR)
75
76
docs: $(docs_dir)
77
0 commit comments