cs763/website/Makefile

18 lines
378 B
Makefile

DEPLOY=driftless:/u/j/u/justhsu/public/html-s/teaching/current/cs839
# 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)