blog/Makefile

22 lines
292 B
Makefile
Raw Normal View History

2024-10-19 14:06:13 +02:00
all: build
build:
uv run pelican -s publishconf.py
2024-10-19 14:06:13 +02:00
dev:
uv run invoke livereload
2024-10-19 14:06:13 +02:00
publish:
uv run invoke publish
2024-10-19 14:06:13 +02:00
clean:
uv run invoke clean
2024-10-19 14:06:13 +02:00
%.mo: %.po
msgfmt "$^" -o "$@"
init: themes/clean-blog/translations/fr/LC_MESSAGES/messages.mo
uv sync
.PHONY: clean build publish dev init