aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-07-03 17:22:42 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-07-03 17:26:51 +0200
commitce6c095dc57827531f9627faf6a94183be451879 (patch)
tree8b752e62d49d5df1e088d87a177d4ab266f624a3 /Makefile
parentde76419cf301a986831dca0d802c73fd07223dbd (diff)
downloadjnfilter-ce6c095dc57827531f9627faf6a94183be451879.tar.gz
jnfilter-ce6c095dc57827531f9627faf6a94183be451879.tar.bz2
jnfilter-ce6c095dc57827531f9627faf6a94183be451879.zip
ref: Add build to publish the readme file
I use `index.html` in another places.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ed3ae00..7922953 100644
--- a/Makefile
+++ b/Makefile
@@ -11,5 +11,15 @@ clean:
python setup.py clean --all
rm -rf dist jnfilter.egg-info
+docs:
+ pandoc -s \
+ --include-in-header=docs/bamboo.min.css \
+ --metadata title="Filtro para Nerdcast" \
+ --template docs/template.html \
+ -s README.md \
+ -o index.html
+
install_deps:
dnf install -y rpmdevtools rpmlint python
+
+.PHONY: docs