cs763/website/Makefile

31 lines
746 B
Makefile
Raw Normal View History

2021-01-14 17:02:31 +00:00
DEPLOY_HOST=wisc
ARCHIVE_HOST=jackknife
2019-07-30 18:59:00 +00:00
DEPLOY=/u/j/u/justhsu/public/html-s/teaching/current/cs763
2021-01-14 17:02:31 +00:00
ARCHIVE=/home/justhsu/teaching/f20/cs763
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
2021-01-14 12:25:14 +00:00
(cabal new-update && cabal new-install pandoc)
2018-07-21 20:34:26 +00:00
deploy:
make build
find . -type d -exec chmod a+rx {} \;
find . -type f -exec chmod a+r {} \;
2021-01-14 17:02:31 +00:00
# ssh jackknife 'mkdir -p html/staging/cs763'
rsync -avzp --relative $(DEPLOY) -e ssh ./site/ $(DEPLOY_HOST)
2018-12-25 23:19:21 +00:00
archive:
make build
find . -type d -exec chmod a+rx {} \;
find . -type f -exec chmod a+r {} \;
2021-01-14 17:02:31 +00:00
rsync -avzp --relative $(ARCHIVE) -e ssh ./site/ $(ARCHIVE_HOST)