GNUmakefile: generate html files

This commit is contained in:
Nedko Arnaudov 2023-05-27 18:44:16 +03:00
parent 519f80a484
commit 6404ffc637
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/html/

10
GNUmakefile Normal file
View File

@ -0,0 +1,10 @@
.PHONY: html html-mkdir
html: html/jackdbus-packaging.html
html: html/suggested-packaging-approach.html
html-mkdir:
@mkdir -vp html
./html/%.html : ./%.adoc html-mkdir
asciidoc -b html5 -a data-uri -a icons --theme ladi -o $@ $<