Move Python impl to impls dir.

This commit is contained in:
Simon Forman
2022-01-24 19:02:47 -08:00
parent 530deab19d
commit d42a8dfc0c
17 changed files with 0 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# My make-fu style is old and tired. I just want to have a few helper commands.
WEBSERVER = [email protected]
.PHONY: clean docs upload-docs
clean:
$(RM) -r Thun.egg-info/ dist/ build/ __pycache__/
find . -name '*.pyc' | xargs $(RM)
docs:
cd ./docs && make && make mov && cd ./sphinx_docs && make html
upload-docs: docs
ssh $(WEBSERVER) /home/users/s/sf/sforman/backup-and-remove-htdocs
rsync -rv --progress ./docs/sphinx_docs/_build/html/ $(WEBSERVER):/home/groups/j/jo/joypy/htdocs/