2011-08-24 15:54:58 -07:00
|
|
|
# vim:ft=automake
|
|
|
|
|
# included from Top Level Makefile.am
|
|
|
|
|
# All paths should be given relative to the root
|
|
|
|
|
|
2022-08-08 13:24:00 +02:00
|
|
|
dist_doc_DATA+= doc/README.txt \
|
2026-05-08 15:02:12 +02:00
|
|
|
doc/QUIC.md \
|
2026-06-30 14:13:57 +03:00
|
|
|
doc/dilithium-to-mldsa-migration.md \
|
|
|
|
|
doc/SBOM.md \
|
2026-08-06 10:54:18 +10:00
|
|
|
doc/CRA.md \
|
|
|
|
|
doc/ASM_AND_MATH_DEFINES.md \
|
|
|
|
|
doc/ALGORITHM_DEFINES.md
|
2022-08-08 13:24:00 +02:00
|
|
|
|
2018-02-08 10:05:30 -07:00
|
|
|
|
|
|
|
|
dox-pdf:
|
|
|
|
|
echo "Generating PDF"
|
2018-03-08 10:53:44 -07:00
|
|
|
cd doc && ./generate_documentation.sh -install -pdf || (echo "HTML generation failed $$?"; exit 1)
|
2018-02-08 10:05:30 -07:00
|
|
|
|
|
|
|
|
dox-html:
|
|
|
|
|
echo "Generating HTML"
|
2018-03-08 10:53:44 -07:00
|
|
|
cd doc && ./generate_documentation.sh -install -html || (echo "HTML generation failed $$?"; exit 1)
|
2018-02-08 10:05:30 -07:00
|
|
|
|
|
|
|
|
dox: dox-html dox-pdf
|
|
|
|
|
|
2026-07-13 15:18:47 +03:00
|
|
|
# NOTE: `clean-local` (doc build artefacts + the OmniBOR/advisory outputs) is
|
|
|
|
|
# defined in the top-level Makefile.am. automake permits a single clean-local,
|
|
|
|
|
# and the OmniBOR/advisory products belong with the other top-level build
|
|
|
|
|
# outputs, so all local-clean removals are consolidated there.
|