-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (22 loc) · 724 Bytes
/
Makefile
File metadata and controls
31 lines (22 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
default: serve
serve:
mkdocs serve
here = $(shell pwd)
# Replaced by GH actions
# # https://www.mkdocs.org/user-guide/deploying-your-docs/
# deploy:
# -rm *~
# -git commit -a -m "Deploying"
# git push
# cd ../DynamicTimeWarping.github.io && \
# mkdocs gh-deploy --force --config-file $(here)/mkdocs.yml --remote-branch master
# deploy-nochange:
# cd ../DynamicTimeWarping.github.io && \
# mkdocs gh-deploy --force --config-file $(here)/mkdocs.yml --remote-branch master
# copyapi:
# make -C ../dtw-python docs
# -mkdir -p docs/py-api
# cp -a ../dtw-python/docs/_build/html docs/py-api
pythumbs: docs/py-images/*.png
cd docs/py-images && \
for i in *.png; do convert -geometry x150 $$i thumbs/$$i; done