Skip to content
Snippets Groups Projects
Commit e5cbf24e authored by Alexander Strasser's avatar Alexander Strasser Committed by Michael Niedermayer
Browse files

doc: build: TEXIDEP: Recognize verbatim includes


  When generating the .dep files for .texi sources, verbatim includes
(@verbatiminclude) should also be taken into account.

Signed-off-by: default avatarAlexander Strasser <eclipse7@gmx.net>
Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent f1622a17
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ all-$(CONFIG_DOC): documentation ...@@ -15,7 +15,7 @@ all-$(CONFIG_DOC): documentation
documentation: $(DOCS) documentation: $(DOCS)
TEXIDEP = awk '/^@include/ { printf "$@: $(@D)/%s\n", $$2 }' <$< >$(@:%=%.d) TEXIDEP = awk '/^@(verbatim)?include/ { printf "$@: $(@D)/%s\n", $$2 }' <$< >$(@:%=%.d)
doc/%.html: TAG = HTML doc/%.html: TAG = HTML
doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment