Skip to content

Commit

Permalink
tools: makefile: separate markdown doc generation and markdown packag…
Browse files Browse the repository at this point in the history
…e lists generation
  • Loading branch information
nodiscc committed Oct 28, 2021
1 parent bb82cba commit 464ece9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ update_todo:
./gitea-cli/bin/gitea issues baron/debian-live-config | jq -r '.[] | "- #\(.number) - \(.title) - **`\(.milestone.title // "-")`** `\(.labels | map(.name) | join(","))`"' | sed 's/ - `null`//' >> doc/md/TODO.md; \
rm -rf gitea-cli

doc: install_dev_docs doc_md doc_html
doc: install_dev_docs doc_package_lists doc_md doc_html

# install documentation generator (sphinx + markdown + theme)
install_dev_docs:
Expand All @@ -109,6 +109,8 @@ doc_md:
cp CHANGELOG.md doc/md/
cp LICENSE doc/md/LICENSE.md
sed -i 's|doc/md/||g' doc/md/*.md

doc_package_lists:
./doc/gen_package_lists.py

# HTML documentation generation (sphinx-build --help)
Expand Down

0 comments on commit 464ece9

Please sign in to comment.