You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.DEFAULT: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
rm -rf _output
|
|
mkdir -p _output/blog
|
|
bash pblog.sh > _output/blog/feed.xml
|
|
xsltproc _output/blog/feed.xml > _output/blog/index.html
|
|
bash sed.sh
|
|
|
|
serve: build
|
|
python3 -m http.server --directory _output/
|
|
|
|
clean:
|
|
rm _output/*
|