2012-11-28 23:13:28 +00:00
|
|
|
LIBRARIES-$(CONFIG_AVUTIL) += libavutil
|
|
|
|
LIBRARIES-$(CONFIG_SWSCALE) += libswscale
|
|
|
|
LIBRARIES-$(CONFIG_SWRESAMPLE) += libswresample
|
|
|
|
LIBRARIES-$(CONFIG_AVCODEC) += libavcodec
|
|
|
|
LIBRARIES-$(CONFIG_AVFORMAT) += libavformat
|
|
|
|
LIBRARIES-$(CONFIG_AVDEVICE) += libavdevice
|
|
|
|
LIBRARIES-$(CONFIG_AVFILTER) += libavfilter
|
2012-11-01 12:20:44 +00:00
|
|
|
|
2012-11-28 23:13:28 +00:00
|
|
|
COMPONENTS-$(CONFIG_AVUTIL) += ffmpeg-utils
|
|
|
|
COMPONENTS-$(CONFIG_SWSCALE) += ffmpeg-scaler
|
|
|
|
COMPONENTS-$(CONFIG_SWRESAMPLE) += ffmpeg-resampler
|
|
|
|
COMPONENTS-$(CONFIG_AVCODEC) += ffmpeg-codecs ffmpeg-bitstream-filters
|
|
|
|
COMPONENTS-$(CONFIG_AVFORMAT) += ffmpeg-formats ffmpeg-protocols
|
|
|
|
COMPONENTS-$(CONFIG_AVDEVICE) += ffmpeg-devices
|
|
|
|
COMPONENTS-$(CONFIG_AVFILTER) += ffmpeg-filters
|
2012-11-18 12:00:11 +00:00
|
|
|
|
2013-11-25 23:05:38 +00:00
|
|
|
MANPAGES1 = $(AVPROGS-yes:%=doc/%.1) $(AVPROGS-yes:%=doc/%-all.1) $(COMPONENTS-yes:%=doc/%.1)
|
2013-05-18 13:10:21 +00:00
|
|
|
MANPAGES3 = $(LIBRARIES-yes:%=doc/%.3)
|
|
|
|
MANPAGES = $(MANPAGES1) $(MANPAGES3)
|
2013-11-25 23:05:38 +00:00
|
|
|
PODPAGES = $(AVPROGS-yes:%=doc/%.pod) $(AVPROGS-yes:%=doc/%-all.pod) $(COMPONENTS-yes:%=doc/%.pod) $(LIBRARIES-yes:%=doc/%.pod)
|
|
|
|
HTMLPAGES = $(AVPROGS-yes:%=doc/%.html) $(AVPROGS-yes:%=doc/%-all.html) $(COMPONENTS-yes:%=doc/%.html) $(LIBRARIES-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-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
|
|
|
|
2011-12-19 23:28:47 +00:00
|
|
|
TXTPAGES = doc/fate.txt \
|
|
|
|
|
|
|
|
|
2012-08-09 21:37:28 +00:00
|
|
|
DOCS-$(CONFIG_HTMLPAGES) += $(HTMLPAGES)
|
|
|
|
DOCS-$(CONFIG_PODPAGES) += $(PODPAGES)
|
|
|
|
DOCS-$(CONFIG_MANPAGES) += $(MANPAGES)
|
|
|
|
DOCS-$(CONFIG_TXTPAGES) += $(TXTPAGES)
|
2012-07-12 01:41:25 +00:00
|
|
|
DOCS = $(DOCS-yes)
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2014-01-26 17:30:06 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_AVIO_READING_EXAMPLE) += avio_reading
|
2014-02-17 00:48:42 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_AVCODEC_EXAMPLE) += avcodec
|
2014-09-02 01:46:22 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_DECODING_ENCODING_EXAMPLE) += decoding_encoding
|
2013-11-28 12:55:34 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_DEMUXING_DECODING_EXAMPLE) += demuxing_decoding
|
2014-07-16 14:42:42 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_EXTRACT_MVS_EXAMPLE) += extract_mvs
|
2014-02-25 18:24:16 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE) += filter_audio
|
2013-11-28 12:55:34 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_FILTERING_AUDIO_EXAMPLE) += filtering_audio
|
|
|
|
DOC_EXAMPLES-$(CONFIG_FILTERING_VIDEO_EXAMPLE) += filtering_video
|
|
|
|
DOC_EXAMPLES-$(CONFIG_METADATA_EXAMPLE) += metadata
|
2013-11-28 13:10:34 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_MUXING_EXAMPLE) += muxing
|
2014-01-19 12:45:48 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_REMUXING_EXAMPLE) += remuxing
|
2013-11-28 12:55:34 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_RESAMPLING_AUDIO_EXAMPLE) += resampling_audio
|
|
|
|
DOC_EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE) += scaling_video
|
2013-11-28 13:10:34 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac
|
2014-03-09 00:20:41 +00:00
|
|
|
DOC_EXAMPLES-$(CONFIG_TRANSCODING_EXAMPLE) += transcoding
|
2013-11-28 13:06:57 +00:00
|
|
|
ALL_DOC_EXAMPLES_LIST = $(DOC_EXAMPLES-) $(DOC_EXAMPLES-yes)
|
2013-11-02 16:05:28 +00:00
|
|
|
|
2013-11-28 13:10:34 +00:00
|
|
|
DOC_EXAMPLES := $(DOC_EXAMPLES-yes:%=doc/examples/%$(PROGSSUF)$(EXESUF))
|
2013-11-28 13:06:57 +00:00
|
|
|
ALL_DOC_EXAMPLES := $(ALL_DOC_EXAMPLES_LIST:%=doc/examples/%$(PROGSSUF)$(EXESUF))
|
|
|
|
ALL_DOC_EXAMPLES_G := $(ALL_DOC_EXAMPLES_LIST:%=doc/examples/%$(PROGSSUF)_g$(EXESUF))
|
2013-11-28 13:10:34 +00:00
|
|
|
PROGS += $(DOC_EXAMPLES)
|
2013-11-02 16:05:28 +00:00
|
|
|
|
2013-11-24 21:40:16 +00:00
|
|
|
all-$(CONFIG_DOC): doc
|
|
|
|
|
2012-08-11 09:58:57 +00:00
|
|
|
doc: documentation
|
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)
|
|
|
|
|
2013-05-28 19:52:33 +00:00
|
|
|
TEXIDEP = perl $(SRC_PATH)/doc/texidep.pl $(SRC_PATH) $< $@ >$(@:%=%.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
|
|
|
GENTEXI = format codec
|
|
|
|
GENTEXI := $(GENTEXI:%=doc/avoptions_%.texi)
|
|
|
|
|
|
|
|
$(GENTEXI): TAG = GENTEXI
|
2012-07-12 01:45:00 +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
|
2014-09-01 02:39:35 +00:00
|
|
|
doc/%-all.html: TAG = HTML
|
|
|
|
|
|
|
|
ifdef HAVE_MAKEINFO_HTML
|
|
|
|
doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.pm $(GENTEXI)
|
|
|
|
$(Q)$(TEXIDEP)
|
|
|
|
$(M)makeinfo --html -I doc --no-split -D config-not-all --init-file=$(SRC_PATH)/doc/t2h.pm --output $@ $<
|
|
|
|
|
|
|
|
doc/%-all.html: doc/%.texi $(SRC_PATH)/doc/t2h.pm $(GENTEXI)
|
|
|
|
$(Q)$(TEXIDEP)
|
|
|
|
$(M)makeinfo --html -I doc --no-split -D config-all --init-file=$(SRC_PATH)/doc/t2h.pm --output $@ $<
|
|
|
|
else
|
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)
|
2013-03-19 19:54:26 +00:00
|
|
|
$(M)texi2html -I doc -monolithic --D=config-not-all --init-file $(SRC_PATH)/doc/t2h.init --output $@ $<
|
|
|
|
|
|
|
|
doc/%-all.html: doc/%.texi $(SRC_PATH)/doc/t2h.init $(GENTEXI)
|
|
|
|
$(Q)$(TEXIDEP)
|
|
|
|
$(M)texi2html -I doc -monolithic --D=config-all --init-file $(SRC_PATH)/doc/t2h.init --output $@ $<
|
2014-09-01 02:39:35 +00:00
|
|
|
endif
|
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)
|
2013-03-19 19:54:26 +00:00
|
|
|
$(M)perl $(SRC_PATH)/doc/texi2pod.pl -Dconfig-not-all=yes -Idoc $< $@
|
|
|
|
|
|
|
|
doc/%-all.pod: TAG = POD
|
|
|
|
doc/%-all.pod: doc/%.texi $(SRC_PATH)/doc/texi2pod.pl $(GENTEXI)
|
|
|
|
$(Q)$(TEXIDEP)
|
|
|
|
$(M)perl $(SRC_PATH)/doc/texi2pod.pl -Dconfig-all=yes -Idoc $< $@
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2012-11-01 12:20:44 +00:00
|
|
|
doc/%.1 doc/%.3: TAG = MAN
|
2012-11-11 11:50:44 +00:00
|
|
|
doc/%.1: doc/%.pod $(GENTEXI)
|
2011-06-06 17:03:22 +00:00
|
|
|
$(M)pod2man --section=1 --center=" " --release=" " $< > $@
|
2012-11-11 11:50:44 +00:00
|
|
|
doc/%.3: doc/%.pod $(GENTEXI)
|
|
|
|
$(M)pod2man --section=3 --center=" " --release=" " $< > $@
|
2011-06-06 17:03:22 +00:00
|
|
|
|
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
|
|
|
|
2014-07-07 22:24:49 +00:00
|
|
|
doc/doxy/html: TAG = DOXY
|
2014-07-07 22:24:47 +00:00
|
|
|
doc/doxy/html: $(SRC_PATH)/doc/Doxyfile $(SRC_PATH)/doc/doxy-wrapper.sh $(DOXY_INPUT)
|
2014-07-07 22:24:48 +00:00
|
|
|
$(M)$(SRC_PATH)/doc/doxy-wrapper.sh $(SRC_PATH) $< $(DOXYGEN) $(DOXY_INPUT)
|
2011-06-28 17:45:13 +00:00
|
|
|
|
2013-09-06 04:10:48 +00:00
|
|
|
install-doc: install-html install-man
|
|
|
|
|
2013-09-06 04:08:31 +00:00
|
|
|
install-html:
|
2013-09-01 22:00:06 +00:00
|
|
|
|
2012-07-12 01:41:25 +00:00
|
|
|
install-man:
|
|
|
|
|
2013-09-01 22:00:06 +00:00
|
|
|
ifdef CONFIG_HTMLPAGES
|
2013-11-24 21:40:16 +00:00
|
|
|
install-progs-$(CONFIG_DOC): install-html
|
2013-08-28 08:30:14 +00:00
|
|
|
|
2013-09-06 04:08:31 +00:00
|
|
|
install-html: $(HTMLPAGES)
|
2013-08-28 08:30:14 +00:00
|
|
|
$(Q)mkdir -p "$(DOCDIR)"
|
|
|
|
$(INSTALL) -m 644 $(HTMLPAGES) "$(DOCDIR)"
|
2013-09-01 22:00:06 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CONFIG_MANPAGES
|
2013-11-24 21:40:16 +00:00
|
|
|
install-progs-$(CONFIG_DOC): install-man
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
install-man: $(MANPAGES)
|
|
|
|
$(Q)mkdir -p "$(MANDIR)/man1"
|
2013-05-18 13:10:21 +00:00
|
|
|
$(INSTALL) -m 644 $(MANPAGES1) "$(MANDIR)/man1"
|
|
|
|
$(Q)mkdir -p "$(MANDIR)/man3"
|
|
|
|
$(INSTALL) -m 644 $(MANPAGES3) "$(MANDIR)/man3"
|
2012-07-12 01:41:25 +00:00
|
|
|
endif
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2013-09-06 04:10:48 +00:00
|
|
|
uninstall: uninstall-doc
|
|
|
|
|
|
|
|
uninstall-doc: uninstall-html uninstall-man
|
2013-08-28 08:30:14 +00:00
|
|
|
|
2013-09-06 04:08:31 +00:00
|
|
|
uninstall-html:
|
2013-08-28 08:30:14 +00:00
|
|
|
$(RM) -r "$(DOCDIR)"
|
2011-06-06 17:03:22 +00:00
|
|
|
|
|
|
|
uninstall-man:
|
2013-11-25 23:05:38 +00:00
|
|
|
$(RM) $(addprefix "$(MANDIR)/man1/",$(AVPROGS-yes:%=%.1) $(AVPROGS-yes:%=%-all.1) $(COMPONENTS-yes:%=%.1))
|
2013-10-24 19:14:55 +00:00
|
|
|
$(RM) $(addprefix "$(MANDIR)/man3/",$(LIBRARIES-yes:%=%.3))
|
2011-06-06 17:03:22 +00:00
|
|
|
|
2013-01-19 03:48:59 +00:00
|
|
|
clean:: docclean
|
2012-12-17 12:39:53 +00:00
|
|
|
|
2013-03-19 19:54:26 +00:00
|
|
|
distclean:: docclean
|
|
|
|
$(RM) doc/config.texi
|
|
|
|
|
2013-11-28 12:56:08 +00:00
|
|
|
examplesclean:
|
2013-11-28 13:06:57 +00:00
|
|
|
$(RM) $(ALL_DOC_EXAMPLES) $(ALL_DOC_EXAMPLES_G)
|
2013-11-28 12:56:08 +00:00
|
|
|
$(RM) $(CLEANSUFFIXES:%=doc/examples/%)
|
|
|
|
|
|
|
|
docclean: examplesclean
|
|
|
|
$(RM) $(CLEANSUFFIXES:%=doc/%)
|
2013-11-26 00:31:00 +00:00
|
|
|
$(RM) $(TXTPAGES) doc/*.html doc/*.pod doc/*.1 doc/*.3 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-11-03 13:47:50 +00:00
|
|
|
.PHONY: apidoc doc documentation
|