Browse Source

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: Alexander Strasser <eclipse7@gmx.net>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.10
Alexander Strasser Michael Niedermayer 14 years ago
parent
commit
e5cbf24e45
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      doc/Makefile

+ 1
- 1
doc/Makefile View File

@@ -15,7 +15,7 @@ all-$(CONFIG_DOC): documentation

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: doc/%.texi $(SRC_PATH)/doc/t2h.init


Loading…
Cancel
Save