Mercurial > mplayer.hg
view DOCS/xml/Makefile @ 30859:ee4e8dbc4d8a
Add support for Apple's ProRes and AIC codecs, now that all prerequisites
are in place.
Add codecs.conf entry for both codecs, and qt_comp.h entry for ProRes
(not used except for debugging, so mainly for completeness). Both work
with -demuxer mov only, as all other QuickTime binary codecs.
AIC support is for OS X only, and untested.
Split out from a patch Andrew Wason (r e c t a l o g i c <at> rectalogic
<dot> com) posted in June.
author | sesse |
---|---|
date | Mon, 15 Mar 2010 12:58:17 +0000 |
parents | e709ce5b5d34 |
children | 783f8faee539 |
line wrap: on
line source
# Makefile for generating the HTML documentation include ../../config.mak # Generated HTML files go here. HTML = ../HTML MAIN_XML_ALL = $(foreach lang,$(DOC_LANG_ALL),$(lang)/main.xml) CONFIGURE_GENERATED = html-chunk.xsl html-single.xsl xsltproc.sh xmllint.sh all: html-chunked html-single help: @echo "Targets:" @echo "********" @echo "all : Build everything for configured languages (default)." @echo "html-single : HTML documentation for configured languages (single file)" @echo "html-single-LANG : As above, but only one language." @echo "html-chunked : HTML documentation for configured languages (multiple files)" @echo "html-chunked-LANG : As above, but only one language." @echo "xmllint : Check syntax of XML files for configured languages." @echo "xmllint-LANG : Check syntax of LANG XML files." @echo "clean : Purge the 'HTML' directory." @echo "releaseclean : Remove generated files but keep the HTML." @echo "distclean : Remove ALL generated files." @echo "Substitute LANG for one of $(DOC_LANG_ALL)" html-chunked: $(addprefix html-chunked-,$(DOC_LANGS)) html-single: $(addprefix html-single-,$(DOC_LANGS)) xmllint: $(addprefix xmllint-,$(DOC_LANGS)) $(foreach lang,$(DOC_LANG_ALL),$(HTML)/$(lang)): mkdir -p $@ $(CONFIGURE_GENERATED) $(MAIN_XML_ALL): sh configure define lang-def html-chunked-$(lang) html-single-$(lang): $(HTML)/$(lang) $(CONFIGURE_GENERATED) html-chunked-$(lang): $(MAKE) HTMLDIR=../$$< -C $(lang) html-chunked html-single-$(lang): $(MAKE) HTMLDIR=../$$< -C $(lang) html-single xmllint-$(lang): xmllint.sh $(MAKE) -C $(lang) xmllint endef $(foreach lang, $(DOC_LANG_ALL),$(eval $(lang-def))) clean: -rm -rf $(HTML) releaseclean: -rm -f $(CONFIGURE_GENERATED) -rm -f $(MAIN_XML_ALL) -rm -f $$(find . -name *.xml -type l) distclean: clean releaseclean .PHONY: all help html-chunked html-single xmllint .PHONY: html-chunked-* html-single-* xmllint-* *clean*