Qt: make playlist widget even a bit more pretty
[vlc.git] / doc / developer2 / Makefile
blob772c2035099dbdb992a862db8ad6d31cb1b4a0dc
1 XSLTPROC=xsltproc
2 DOC := vlc-dev-doc
4 XML_DECL1 = /usr/lib/sgml/declaration/xml.decl
5 XML_DECL2 = /usr/share/sgml/declaration/xml.decl
6 XML_DECL = `test -f $(XML_DECL1) && echo $(XML_DECL1) || echo $(XML_DECL2)`
8 XSL= videolan-doc.xsl
10 all: en/$(DOC).html
12 init:
13 mkdir -p en
14 cp screen.css en
16 en/$(DOC).html : init
17 xsltproc $(XSL) $(DOC).xml > en/$(DOC).html
18 mv *.html en
20 clean:
21 rm -rf en