diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-12-16 09:30:17 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-01-01 13:07:57 +0100 |
commit | 58f0d164def52147e9a9ee4dad9fe8d0d334623f (patch) | |
tree | e7ae1f56bcbb4341d3a119058650ee54c6648597 | |
parent | 9a4c10e3af011dd84d3135090d3ca4212cbad127 (diff) | |
download | ffmpeg-58f0d164def52147e9a9ee4dad9fe8d0d334623f.tar.gz |
Makefile: add html template files to the doxygen deps
-rw-r--r-- | doc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index 3cd67dfbff..4228c54017 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -57,7 +57,10 @@ $(DOCS) doc/doxy/html: | doc/ $(DOC_EXAMPLES:%=%.o): | doc/examples OBJDIRS += doc/examples -doc/doxy/html: $(SRC_PATH)/doc/Doxyfile $(INSTHEADERS) +DOXY_TEMPLATES = doxy_stylesheet.css footer.html header.html +DOXY_TEMPLATES := $(addprefix $(SRC_PATH)/doc/doxy/, $(DOXY_TEMPLATES)) + +doc/doxy/html: $(SRC_PATH)/doc/Doxyfile $(DOXY_TEMPLATES) $(INSTHEADERS) $(M)$(SRC_PATH)/doc/doxy-wrapper.sh $(SRC_PATH) $^ install-progs-$(CONFIG_POD2MAN): install-man |