cs763/website/Makefile

22 lines
538 B
Makefile
Raw Normal View History

2018-09-10 04:26:26 +00:00
DEPLOY=driftless:/u/j/u/justhsu/public/html-s/teaching/current/cs839
# DEPLOY=rockhopper-07.cs.wisc.edu:/u/j/u/justhsu/public/html-s/teaching/current/cs839
2018-08-03 22:09:20 +00:00
# DEPLOY=jackknife:/home/justhsu/html/staging/cs839/
2018-07-21 20:34:26 +00:00
build:
2018-09-04 03:43:48 +00:00
make assets && mkdocs build
2018-07-21 20:34:26 +00:00
preview:
2018-09-04 03:43:48 +00:00
make assets && mkdocs serve
assets:
(cd docs/resources/slides; make)
2018-07-21 20:34:26 +00:00
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)