diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-11-18 13:00:11 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-11-25 00:27:07 +0100 |
commit | fa4ead1d6692cd4d698b651d1b5882fc9fb64fcb (patch) | |
tree | 76a11e7c555c46bb432883c5d8854ff50e05c97e /doc/Makefile | |
parent | ca4872e8878dd87d6bf060e049ec7fbd2f0abbe4 (diff) | |
download | ffmpeg-fa4ead1d6692cd4d698b651d1b5882fc9fb64fcb.tar.gz |
doc: move codec options and descriptions to a dedicated manual page
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/Makefile b/doc/Makefile index d0b4dfc4aa..c490bac3aa 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -2,9 +2,11 @@ DOCLIBS-$(CONFIG_AVUTIL) += libavutil DOCLIBS-$(CONFIG_AVCODEC) += libavcodec DOCLIBS-$(CONFIG_AVFILTER) += libavfilter -MANPAGES = $(PROGS-yes:%=doc/%.1) $(DOCLIBS-yes:%=doc/%.3) -PODPAGES = $(PROGS-yes:%=doc/%.pod) $(DOCLIBS-yes:%=doc/%.pod) -HTMLPAGES = $(PROGS-yes:%=doc/%.html) $(DOCLIBS-yes:%=doc/%.html) \ +COMPONENTS=$(PROGS-yes) ffmpeg-codecs + +MANPAGES = $(COMPONENTS:%=doc/%.1) $(DOCLIBS-yes:%=doc/%.3) +PODPAGES = $(COMPONENTS:%=doc/%.pod) $(DOCLIBS-yes:%=doc/%.pod) +HTMLPAGES = $(COMPONENTS:%=doc/%.html) $(DOCLIBS-yes:%=doc/%.html) \ doc/developer.html \ doc/faq.html \ doc/fate.html \ |