Makefile is back

This commit is contained in:
Fabrice Mouhartem 2024-10-19 14:06:13 +02:00
parent 8fc7b7346f
commit ddb749e247
Signed by: fmouhart
GPG Key ID: 2C5033B228CFE4E7
2 changed files with 15 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
output output
__pycache__ __pycache__
Makefile
*.pid *.pid
plugins plugins
cache cache

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
all: build
build:
poetry run pelican -s publishconf.py
dev:
poetry run invoke livereload
publish:
poetry run invoke publish
clean:
poetry run invoke clean
.PHONY: clean build publish dev