2011-06-06 17:03:22 +00:00
|
|
|
MANPAGES = $(PROGS-yes:%=doc/%.1)
|
|
|
|
PODPAGES = $(PROGS-yes:%=doc/%.pod)
|
2011-12-07 20:49:53 +00:00
|
|
|
HTMLPAGES = $(PROGS-yes:%=doc/%.html) \
|
|
|
|
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-03 20:25:04 +00:00
|
|
|
doc/platform.html \
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2011-12-19 23:28:47 +00:00
|
|
|
TXTPAGES = doc/fate.txt \
|
|
|
|
|
|
|
|
|
2011-12-07 20:49:53 +00:00
|
|
|
DOCS = $(HTMLPAGES) $(MANPAGES) $(PODPAGES)
|
2011-12-19 23:28:47 +00:00
|
|
|
ifdef HAVE_MAKEINFO
|
|
|
|
DOCS += $(TXTPAGES)
|
|
|
|
endif
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
all-$(CONFIG_DOC): documentation
|
|
|
|
|
|
|
|
documentation: $(DOCS)
|
|
|
|
|
2011-12-19 23:27:22 +00:00
|
|
|
TEXIDEP = awk '/^@(verbatim)?include/ { printf "$@: $(@D)/%s\n", $$2 }' <$< >$(@:%=%.d)
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2011-12-19 23:28:47 +00:00
|
|
|
doc/%.txt: TAG = TXT
|
|
|
|
doc/%.txt: doc/%.texi
|
|
|
|
$(Q)$(TEXIDEP)
|
|
|
|
$(M)makeinfo --force --no-headers -o $@ $< 2>/dev/null
|
|
|
|
|
2012-03-14 19:08:50 +00:00
|
|
|
doc/print_options.o: libavformat/options_table.h libavcodec/options_table.h
|
|
|
|
|
|
|
|
GENTEXI = format codec
|
|
|
|
GENTEXI := $(GENTEXI:%=doc/avoptions_%.texi)
|
|
|
|
|
|
|
|
$(GENTEXI): TAG = GENTEXI
|
|
|
|
$(GENTEXI): doc/avoptions_%.texi: doc/print_options
|
|
|
|
$(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
|
2012-03-14 19:08:50 +00:00
|
|
|
doc/%.pod: doc/%.texi $(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-03-27 21:42:41 +00:00
|
|
|
$(DOCS): | doc/
|
2011-06-28 17:45:13 +00:00
|
|
|
|
2011-06-06 17:03:22 +00:00
|
|
|
install-progs-$(CONFIG_DOC): install-man
|
|
|
|
|
|
|
|
install-man: $(MANPAGES)
|
|
|
|
$(Q)mkdir -p "$(MANDIR)/man1"
|
|
|
|
$(INSTALL) -m 644 $(MANPAGES) "$(MANDIR)/man1"
|
|
|
|
|
|
|
|
uninstall: uninstall-man
|
|
|
|
|
|
|
|
uninstall-man:
|
|
|
|
$(RM) $(addprefix "$(MANDIR)/man1/",$(ALLMANPAGES))
|
|
|
|
|
|
|
|
clean::
|
2012-03-20 23:15:18 +00:00
|
|
|
$(RM) $(TXTPAGES) doc/*.html doc/*.pod doc/*.1 $(CLEANSUFFIXES:%=doc/%) doc/avoptions_*.texi
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
-include $(wildcard $(DOCS:%=%.d))
|
|
|
|
|
|
|
|
.PHONY: documentation
|