cs763/website/Makefile

17 lines
307 B
Makefile
Raw Normal View History

2018-07-21 20:34:26 +00:00
DEPLOY=jackknife:/home/justhsu/html/staging/cs839/
build:
mkdocs build
preview:
mkdocs serve
install:
pip install mkdocs mkdocs-material pymdown-extensions
deploy:
make build
find . -type d -exec chmod a+rx {} \;
find . -type f -exec chmod a+r {} \;
rsync -avzp --delete -e ssh ./site/ $(DEPLOY)