mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
- add-changelog-entry - coverage (.lcovrc) - cppcheck, cppcheck-report - doc (renamed from docs) - grammar - mes-doc - uml - update-python-dependencies - valgrind (add_test_setup instead of custom target)
22 lines
828 B
Bash
Executable File
22 lines
828 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Expressions don't expand in single quotes, use double quotes for that. [SC2016]
|
|
# shellcheck disable=SC2016
|
|
|
|
set -euv
|
|
|
|
cd @TOP_SOURCE_DIR@
|
|
|
|
mkdir -p doc/sphinx/grammar
|
|
|
|
./tools/extract_bnf.sh src/bin/dhcp4/dhcp4_parser \
|
|
--markdown ':ref:`dhcp4`' > doc/sphinx/grammar/grammar-dhcp4-parser.rst
|
|
./tools/extract_bnf.sh src/bin/dhcp6/dhcp6_parser \
|
|
--markdown ':ref:`dhcp6`' > doc/sphinx/grammar/grammar-dhcp6-parser.rst
|
|
./tools/extract_bnf.sh src/bin/d2/d2_parser \
|
|
--markdown ':ref:`dhcp-ddns-server`' > doc/sphinx/grammar/grammar-d2-parser.rst
|
|
./tools/extract_bnf.sh src/bin/agent/agent_parser \
|
|
--markdown ':ref:`kea-ctrl-agent`' > doc/sphinx/grammar/grammar-ca-parser.rst
|
|
./tools/extract_bnf.sh src/bin/netconf/netconf_parser \
|
|
--markdown ':ref:`netconf`' > doc/sphinx/grammar/grammar-netconf-parser.rst
|