blog-of-pesto/Makefile

26 lines
623 B
Makefile
Raw Normal View History

2022-08-06 19:34:58 +02:00
.PHONY: clean
.PHONY: deploy
.PHONY: website
.PHONY: json
reviews.json: blog.md parse-md.py
python3 parse-md.py
2022-08-19 13:58:08 +02:00
web/index.html: reviews.json web/templates/index.html web/templates/review.html make_website.py
python3 make_website.py
web/table.html: reviews.json web/templates/table.html make_table.py
python3 make_table.py
2022-08-06 19:34:58 +02:00
web/reviews.json: reviews.json
cp reviews.json web/reviews.json
deploy: website
rsync -a --no-i-r --info=progress2 web/ cyberbly.at:pesto-blog/
2022-08-19 13:58:08 +02:00
website: web/index.html web/reviews.json web/style.css web/table.html
2022-08-06 19:52:48 +02:00
2022-08-06 19:34:58 +02:00
json: reviews.json
clean:
rm web/reviews.json web/index.html reviews.json