mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
22 lines
310 B
Makefile
22 lines
310 B
Makefile
# A Makefile for commands I run frequently:
|
|
|
|
clean:
|
|
rm -rf dist
|
|
rm -rf _static
|
|
rm -rf jrnl.egg-info
|
|
rm -rf docs/_build
|
|
rm -rf _build
|
|
rm -rf _sources
|
|
rm -rf _static
|
|
rm -f *.html
|
|
|
|
html:
|
|
mkdocs serve
|
|
|
|
# Build GitHub Page from docs
|
|
docs:
|
|
mkdocs gh-deploy
|
|
|
|
# Upload to pipy
|
|
dist:
|
|
python setup.py publish
|