blog/makefile

13 lines
206 B
Makefile
Raw Normal View History

2022-07-29 14:27:37 +00:00
.DEFAULT: build
.PHONY: build
build:
bash pblog.sh > _output/feed.xml
xsltproc _output/feed.xml > _output/blog/index.html
serve: build
python3 -m http.server --directory _output/
clean:
rm _output/*