Jim, what should we change here, to introduce the file
naming conventions I sent to the list in one of my
last letters?
Eg. generate the names like this:
php_manual_en_txt.gz
php_manual_en_bightml.gz
php_manual_en_html.tar.gz
php_manual_en_html.tar.bz2
php_manual_en_html.zip
php_manual_en_doc.pdb
php_manual_en_isilo.pdb
php_manual_en_pdf.gz
php_manual_en_pdf.bz2
php_manual_en_pdf.zip
php_manual_en.chm
Goba
> Index: phpdoc/Makefile.in
> diff -u phpdoc/Makefile.in:1.61 phpdoc/Makefile.in:1.62
> --- phpdoc/Makefile.in:1.61 Tue Jul 3 04:59:41 2001
> +++ phpdoc/Makefile.in Sun Jul 8 00:03:56 2001
> @@ -17,7 +17,7 @@
> #
>
> #
> -# $Id: Makefile.in,v 1.61 2001/07/03 08:59:41 hholzgra Exp $
> +# $Id: Makefile.in,v 1.62 2001/07/08 04:03:56 jimw Exp $
> #
>
> VPATH=@srcdir@
> @@ -48,7 +48,7 @@
> all: html
>
> DIST_FILES=manual.zip manual.tar.gz bigmanual.html.gz \
> - manual_doc.pdb manual.txt.gz
> + manual_doc.pdb manual.txt.gz manual.tar.bz2
> MIRROR_TARGETS=php/index.php html/index.html $(DIST_FILES)
>
> html.dsl: $(srcdir)/html.dsl.in ./config.status
> @@ -163,6 +163,9 @@
>
> manual.tar.gz: html/index.html
> -rm -f $@ && (cd html; tar -cf - *.html) | gzip -9 > manual.tar.gz
> +
> +manual.tar.bz2: html/index.html
> + -rm -f $@ && (cd html; tar -cf - *.html) | bzip2 -9 > manual.tar.bz2
>
> howto.html: $(srcdir)/howto.xml $(HOWTO_DEPS) global.ent
> $(JADE) $(CATALOG) -d $(HOWTO_STYLESHEET) -t sgml
$(srcdir)/phpdocxml.dcl $(srcdir)/howto.xml
>