diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-11 17:30:43 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-02-14 12:01:35 +0100 |
commit | f1f42cfc66804907d1df9231469e4296472bb0f5 (patch) | |
tree | 9925913d3d7f4bbfd35f7e4ccf5ca34a90afe60c /doc/Makefile | |
parent | e6c175dfd51e4b0e6deeae72cd8a161b22af3492 (diff) | |
download | ffmpeg-f1f42cfc66804907d1df9231469e4296472bb0f5.tar.gz |
build: Do not pass HTML snippets and stylesheet as input to Doxygen
These files are referenced elsewhere and only generate warnings if
presented to Doxygen as input files.
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/Makefile b/doc/Makefile index e92e72f35a..cf3fbab0a2 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -57,11 +57,12 @@ $(DOCS) doc/doxy/html: | doc/ $(DOC_EXAMPLES:%$(EXESUF)=%.o): | doc/examples OBJDIRS += doc/examples +DOXY_INPUT = $(addprefix $(SRC_PATH)/, $(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) $^ +doc/doxy/html: $(SRC_PATH)/doc/Doxyfile $(DOXY_INPUT) $(DOXY_TEMPLATES) + $(M)$(SRC_PATH)/doc/doxy-wrapper.sh $(SRC_PATH) $< $(DOXY_INPUT) install-progs-$(CONFIG_POD2MAN): install-man install-progs-$(CONFIG_TEXI2HTML): install-doc |