Mercurial > mplayer.hg
view DOCS/xml/Makefile.inc @ 9727:695825b70485
100l to Gabu, this caused divide-by-zero with -vo mga. Apparently
someone only tested -vo xmga. Feel free to reenable if you can fix the
sigfpe properly.
author | rfelker |
---|---|
date | Sat, 29 Mar 2003 19:56:31 +0000 |
parents | 461f71ba8af4 |
children | 970a95a4d856 |
line wrap: on
line source
# # Makefile.inc for Makefiles in sub-directories. # export SGML_CATALOG_FILES # Use customized html.xsl file if exists... ifeq (html.xsl,$(wildcard html.xsl)) HTML_XSL := html.xsl XSL_DEPS := $(HTML_XSL) ../html.xsl ../html-common.xsl else HTML_XSL := ../html.xsl XSL_DEPS := $(HTML_XSL) ../html-common.xsl endif # Fall back to the default HTML stylesheet if not specified. HTML_STYLESHEET ?= ../default.css # This is the main target... $(HTMLDIR)/index.html: documentation.xml $(XSL_DEPS) -rm -f $(HTMLDIR)/* $(XMLLINT) --noout --noent --postvalid --catalogs $< $(XSLTPROC) --catalogs -o $(HTMLDIR)/ $(HTML_XSL) $< cp $(HTML_STYLESHEET) $(HTMLDIR)/ ../html.xsl: sh ../gen-html.xsl.sh $(CHUNK_XSL) > $@