1
0
Fork 0
tuned/doc/manual/Makefile
Pavol Žáčik 71b41394e2
Add a script for generation of plugin docs from docstrings
The script simply joins an introduction text with the
docstrings of all plugin classes.
2024-10-11 12:45:20 +02:00

12 lines
529 B
Makefile

.PHONY: clean
index.html: master.adoc assemblies/*.adoc meta/*.adoc modules/performance/*.adoc ../../tuned/plugins/plugin_*.py
python3 ../../compile_plugin_docs.py modules/performance/ref_available-tuned-plug-ins_intro.adoc modules/performance/ref_available-tuned-plug-ins.adoc
asciidoctor -o index.html master.adoc || asciidoc -o index.html master.adoc
install: index.html
install -Dpm 0644 index.html $(DESTDIR)$(DOCDIR)/manual/index.html
clean:
rm -f modules/performance/ref_available-tuned-plug-ins.adoc
rm -f *.html