2013-11-02 15:44:18 +00:00
|
|
|
ALLMANPAGES = $(AVBASENAMES:%=%.1)
|
|
|
|
MANPAGES = $(AVPROGS-yes:%=doc/%.1)
|
|
|
|
PODPAGES = $(AVPROGS-yes:%=doc/%.pod)
|
|
|
|
HTMLPAGES = $(AVPROGS-yes:%=doc/%.html) \
|
2011-12-07 20:49:53 +00:00
|
|
|
doc/developer.html \
|
|
|
|
doc/faq.html \
|
2011-12-02 00:33:07 +00:00
|
|
|
doc/fate.html \
|
2011-12-07 20:49:53 +00:00
|
|
|
doc/general.html \
|
2011-12-03 17:06:14 +00:00
|
|
|
doc/git-howto.html \
|
2011-12-07 20:49:53 +00:00
|
|
|
doc/libavfilter.html \
|
2011-12-13 22:50:20 +00:00
|
|
|
doc/nut.html \
|
2011-12-03 20:25:04 +00:00
|
|
|
doc/platform.html \
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2013-11-26 19:37:54 +00:00
|
|
|
DOCS-$(CONFIG_POD2MAN) += $(MANPAGES) $(PODPAGES)
|
2013-11-22 00:57:56 +00:00
|
|
|
DOCS-$(CONFIG_TEXI2HTML) += $(HTMLPAGES)
|
|
|
|
DOCS = $(DOCS-yes)
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2014-02-15 14:50:29 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_AVCODEC_EXAMPLE) += avcodec
|
2014-02-13 07:50:16 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE) += filter_audio
|
2014-02-15 14:50:29 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_METADATA_EXAMPLE) += metadata
|
2013-11-02 16:05:28 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_OUTPUT_EXAMPLE) += output
|
2013-10-08 11:10:46 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac
|
2014-02-13 07:50:16 +00:00
|
|
|
ALL_DOC_EXAMPLES = avcodec filter_audio metadata output transcode_aac
|
2013-11-02 16:05:28 +00:00
|
|
|
|
|
|
|
DOC_EXAMPLES := $(DOC_EXAMPLES-yes:%=doc/examples/%$(EXESUF))
|
|
|
|
ALL_DOC_EXAMPLES := $(ALL_DOC_EXAMPLES:%=doc/examples/%$(EXESUF))
|
|
|
|
PROGS += $(DOC_EXAMPLES)
|
|
|
|
|
2013-11-22 00:57:56 +00:00
|
|
|
all: $(DOCS)
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2012-10-29 15:26:59 +00:00
|
|
|
apidoc: doc/doxy/html
|
2011-06-06 17:03:22 +00:00
|
|
|
documentation: $(DOCS)
|
|
|
|
|
2013-11-02 16:05:28 +00:00
|
|
|
examples: $(DOC_EXAMPLES)
|
|
|
|
|
2011-06-06 17:03:22 +00:00
|
|
|
TEXIDEP = awk '/^@include/ { printf "$@: $(@D)/%s\n", $$2 }' <$< >$(@:%=%.d)
|
|
|
|
|
2012-03-14 19:08:50 +00:00
|
|
|
GENTEXI = format codec
|
|
|
|
GENTEXI := $(GENTEXI:%=doc/avoptions_%.texi)
|
|
|
|
|
|
|
|
$(GENTEXI): TAG = GENTEXI
|
2013-11-24 21:11:59 +00:00
|
|
|
$(GENTEXI): doc/avoptions_%.texi: doc/print_options$(HOSTEXESUF)
|
2012-03-14 19:08:50 +00:00
|
|
|
$(M)doc/print_options $* > $@
|
|
|
|
|
2011-06-06 17:03:22 +00:00
|
|
|
doc/%.html: TAG = HTML
|
2012-03-14 19:08:50 +00:00
|
|
|
doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init $(GENTEXI)
|
2011-06-06 17:03:22 +00:00
|
|
|
$(Q)$(TEXIDEP)
|
2012-03-20 10:54:02 +00:00
|
|
|
$(M)texi2html -I doc -monolithic --init-file $(SRC_PATH)/doc/t2h.init --output $@ $<
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
doc/%.pod: TAG = POD
|
2013-01-23 09:08:57 +00:00
|
|
|
doc/%.pod: doc/%.texi $(SRC_PATH)/doc/texi2pod.pl $(GENTEXI)
|
2011-06-06 17:03:22 +00:00
|
|
|
$(Q)$(TEXIDEP)
|
2012-03-20 10:54:02 +00:00
|
|
|
$(M)$(SRC_PATH)/doc/texi2pod.pl -Idoc $< $@
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
doc/%.1: TAG = MAN
|
2012-03-14 19:08:50 +00:00
|
|
|
doc/%.1: doc/%.pod $(GENTEXI)
|
2011-06-06 17:03:22 +00:00
|
|
|
$(M)pod2man --section=1 --center=" " --release=" " $< > $@
|
|
|
|
|
2012-10-29 15:26:59 +00:00
|
|
|
$(DOCS) doc/doxy/html: | doc/
|
2014-02-09 23:23:28 +00:00
|
|
|
$(DOC_EXAMPLES:%$(EXESUF)=%.o): | doc/examples
|
2013-11-02 16:05:28 +00:00
|
|
|
OBJDIRS += doc/examples
|
2012-10-29 15:26:59 +00:00
|
|
|
|
2014-02-11 17:38:03 +00:00
|
|
|
DOXY_INPUT = $(addprefix $(SRC_PATH)/, $(INSTHEADERS) $(DOC_EXAMPLES:%$(EXESUF)=%.c) $(LIB_EXAMPLES:%$(EXESUF)=%.c))
|
2013-12-16 08:30:17 +00:00
|
|
|
DOXY_TEMPLATES = doxy_stylesheet.css footer.html header.html
|
|
|
|
DOXY_TEMPLATES := $(addprefix $(SRC_PATH)/doc/doxy/, $(DOXY_TEMPLATES))
|
|
|
|
|
2014-02-11 16:30:43 +00:00
|
|
|
doc/doxy/html: $(SRC_PATH)/doc/Doxyfile $(DOXY_INPUT) $(DOXY_TEMPLATES)
|
|
|
|
$(M)$(SRC_PATH)/doc/doxy-wrapper.sh $(SRC_PATH) $< $(DOXY_INPUT)
|
2011-06-28 17:45:13 +00:00
|
|
|
|
2013-11-26 19:37:54 +00:00
|
|
|
install-progs-$(CONFIG_POD2MAN): install-man
|
2013-11-22 00:57:56 +00:00
|
|
|
install-progs-$(CONFIG_TEXI2HTML): install-doc
|
2013-08-28 08:30:14 +00:00
|
|
|
|
|
|
|
install-doc: $(HTMLPAGES)
|
|
|
|
$(Q)mkdir -p "$(DOCDIR)"
|
|
|
|
$(INSTALL) -m 644 $(HTMLPAGES) "$(DOCDIR)"
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
install-man: $(MANPAGES)
|
|
|
|
$(Q)mkdir -p "$(MANDIR)/man1"
|
|
|
|
$(INSTALL) -m 644 $(MANPAGES) "$(MANDIR)/man1"
|
|
|
|
|
2013-08-28 08:30:14 +00:00
|
|
|
uninstall: uninstall-doc uninstall-man
|
|
|
|
|
|
|
|
uninstall-doc:
|
|
|
|
$(RM) -r "$(DOCDIR)"
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
uninstall-man:
|
|
|
|
$(RM) $(addprefix "$(MANDIR)/man1/",$(ALLMANPAGES))
|
|
|
|
|
|
|
|
clean::
|
2013-11-02 16:05:28 +00:00
|
|
|
$(RM) $(ALL_DOC_EXAMPLES)
|
|
|
|
$(RM) $(CLEANSUFFIXES:%=doc/%) $(CLEANSUFFIXES:%=doc/examples/%)
|
|
|
|
$(RM) doc/*.html doc/*.pod doc/*.1 doc/avoptions_*.texi
|
2012-10-29 15:26:59 +00:00
|
|
|
$(RM) -r doc/doxy/html
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
-include $(wildcard $(DOCS:%=%.d))
|
|
|
|
|
2012-10-29 15:26:59 +00:00
|
|
|
.PHONY: apidoc documentation
|