17 lines
307 B
Makefile
17 lines
307 B
Makefile
|
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)
|