2025-09-06 10:01:14 +02:00

29 lines
526 B
Makefile

all: demo tpl css settings
python src/microblog.py ./template.tpl ./content.txt > result.html
check:
python src/check-settings.py
# first time run only
tpl:
cp ./example/default.tpl ./template.tpl
css:
cp ./example/timeline.css ./timeline.css
demo:
cp ./example/demo.txt ./content.txt
settings:
cp ./example/settings.toml ./settings.toml
.PHONY: clean
clean:
- rm -f ./pages/*.html
- rm -f ./tags/*/*.html
- rm -f ./webring/*.html
- rm -f ./feeds/*.xml
- rmdir ./pages ./tags/* ./tags ./webring ./feeds