[GENERIC] Zend_Translate:
[zend.git] / documentation / manual / Makefile
blob303654d2142d4b4c2ee99c52216c181cf09b99d9
2 # Zend Framework
4 # LICENSE
6 # This source file is subject to the new BSD license that is bundled
7 # with this package in the file LICENSE.txt.
8 # It is also available through the world-wide-web at this URL:
9 # http://framework.zend.com/license/new-bsd
10 # If you did not receive a copy of the license and are unable to
11 # obtain it through the world-wide-web, please send an email
12 # to license@zend.com so we can send you a copy immediately.
14 # @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
15 # @license http://framework.zend.com/license/new-bsd New BSD License
18 LANG=*
19 DOCBOOK_DTD=http://framework.zend.com/docbook/xml/4.5/docbookx.dtd
20 DOCBOOK_XSL=http://framework.zend.com/docbook-xsl/htmlhelp/htmlhelp.xsl
22 all: html
24 html:
25 @for lang in ./$(LANG) ; \
26 do \
27 [ -d $$lang ] || continue ; \
28 ( cd $$lang && autoconf && ./configure && \
29 make "DOCBOOK_DTD=$(DOCBOOK_DTD)" "DOCBOOK_XSL=$(DOCBOOK_XSL)" 2>&1 | tee err.txt ) ; \
30 echo "LANG $$lang done." ; \
31 done
33 clean:
34 @for lang in $(LANG) ; \
35 do \
36 [ -d $$lang ] || continue ; \
37 ( cd $$lang && rm -rf html/*.html html/HTML.manifest html/figures _temp_*.xml) ; \
38 echo "LANG=$$lang done." ; \
39 done
41 cleanall:
42 @for lang in $(LANG) ; \
43 do \
44 [ -d $$lang ] || continue ; \
45 ( cd $$lang && rm -rf html/*.html html/HTML.manifest html/figures _temp_*.xml \
46 config.* configure autom4te.cache Makefile html.xsl manual.xml err.txt ) ; \
47 echo "LANG $$lang done." ; \
48 done