mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-08-15 17:01:30 +02:00
Added documentation of the defines for algorithms and assembly code and math. user_settings_embedded.h has configuration defines at the top that are set to 0 for off and 1 for on. Setting these turns on the appropriate defines.
28 lines
868 B
Plaintext
28 lines
868 B
Plaintext
# vim:ft=automake
|
|
# included from Top Level Makefile.am
|
|
# All paths should be given relative to the root
|
|
|
|
dist_doc_DATA+= doc/README.txt \
|
|
doc/QUIC.md \
|
|
doc/dilithium-to-mldsa-migration.md \
|
|
doc/SBOM.md \
|
|
doc/CRA.md \
|
|
doc/ASM_AND_MATH_DEFINES.md \
|
|
doc/ALGORITHM_DEFINES.md
|
|
|
|
|
|
dox-pdf:
|
|
echo "Generating PDF"
|
|
cd doc && ./generate_documentation.sh -install -pdf || (echo "HTML generation failed $$?"; exit 1)
|
|
|
|
dox-html:
|
|
echo "Generating HTML"
|
|
cd doc && ./generate_documentation.sh -install -html || (echo "HTML generation failed $$?"; exit 1)
|
|
|
|
dox: dox-html dox-pdf
|
|
|
|
# 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.
|