blob: 3e8feee0e32061d6b27013cec9317cd0fdfebea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.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/*
|