Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ GET_DEPENDENCIES_WITH := corral fetch
CLEAN_DEPENDENCIES_WITH := corral clean
PONYC ?= ponyc
COMPILE_WITH := corral run -- $(PONYC)
BUILD_DOCS_WITH := corral run -- pony-doc

BUILD_DIR ?= build/$(config)
SRC_DIR ?= $(PACKAGE)
Expand Down Expand Up @@ -68,7 +69,7 @@ clean:
$(docs_dir): $(SOURCE_FILES)
rm -rf $(docs_dir)
$(GET_DEPENDENCIES_WITH)
$(PONYC) --docs-public --pass=docs --output build $(SRC_DIR)
$(BUILD_DOCS_WITH) --output build $(SRC_DIR)

docs: $(docs_dir)

Expand Down