-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 2e95b84 with MkDocs version: 1.6.1
- Loading branch information
0 parents
commit 5e449a2
Showing
825 changed files
with
58,244 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.PHONY: help | ||
help: | ||
@echo "make cpp|all" | ||
|
||
.PHONY: cpp | ||
cpp: | ||
@echo "Building C++ documentation..." | ||
doxygen Doxyfile doc_cpp | ||
|
||
.PHONY: mkdocs | ||
mkdocs: | ||
@echo "Building MkDocs documentation..." | ||
cd .. && mkdocs build | ||
|
||
.PHONY: all | ||
all: cpp mkdocs | ||
@echo "All documentation built." | ||
|
||
.PHONY: deploy | ||
deploy: | ||
@echo "Deploying documentation..." | ||
cd .. && mkdocs gh-deploy --force |
Oops, something went wrong.