-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed def9fda with MkDocs version: 1.4.2
- Loading branch information
1 parent
868c422
commit dd1796a
Showing
41 changed files
with
12,650 additions
and
319 deletions.
There are no files selected for viewing
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
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,29 @@ | ||
PYTHON = python2 | ||
MKDOCS = mkdocs | ||
MATLAB_FILES = interpolateSE3.m | ||
|
||
SRC = $(filter $(MATLAB_FILES), $(wildcard *.m)) | ||
TAR = $(SRC:.m=.md) | ||
|
||
mfiledir = docs/mfiles | ||
|
||
$(info SRC is $(SRC)) | ||
$(info TAR is $(TAR)) | ||
$(info mfiledir is $(mfiledir)) | ||
|
||
.PHONY: all clean | ||
|
||
all: $(TAR) | ||
|
||
$(MATLAB_FILES:.m=.md): $(MATLAB_FILES) docs/matdoc.py docs/matdocparser.py | ||
$(info $@) | ||
$(info $(@D)) | ||
mkdir -p $(mfiledir) | ||
$(PYTHON) ./docs/matdoc.py "$<" > "$(mfiledir)/$@" | ||
|
||
doc-serve: mkdocs.yml | ||
$(MKDOCS) serve | ||
|
||
clean: | ||
rm -f $(TAR) | ||
rm -rf $(mfiledir) |
Oops, something went wrong.