jimw            Sat May 25 13:03:47 2002 EDT

  Modified files:              
    /phpdoc     Makefile.in configure.in 
  Log:
  include figures in tar.bz2, tar.gz, and .zip
  
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.116 phpdoc/Makefile.in:1.117
--- phpdoc/Makefile.in:1.116    Sun May 19 14:31:38 2002
+++ phpdoc/Makefile.in  Sat May 25 13:03:46 2002
@@ -13,7 +13,7 @@
 #
 
 #
-# $Id: Makefile.in,v 1.116 2002/05/19 18:31:38 tom Exp $
+# $Id: Makefile.in,v 1.117 2002/05/25 17:03:46 jimw Exp $
 #
 
 all: html
@@ -167,13 +167,13 @@
        iSilo386 @MANUAL@.html @MANUAL@.isilo.pdb
 
 @MANUAL@.zip: html/index.html
-       -rm -f $@ && (cd html; zip -9 -q ../$@ *.html)
+       -rm -f $@ && (cd html; zip -R -9 -q ../$@ *.html *.png)
 
 @MANUAL@.tar.gz: html/index.html
-       -rm -f $@ && (cd html; tar -cf - *.html) | gzip -9 > $@
+       -rm -f $@ && (cd html; tar -cf - *.html @FIGURES@) | gzip -9 > $@
 
 @MANUAL@.tar.bz2: html/index.html
-       -rm -f $@ && (cd html; tar -cf - *.html) | bzip2 -9 > $@
+       -rm -f $@ && (cd html; tar -cf - *.html @FIGURES@) | bzip2 -9 > $@
 
 howto/html/index.html: howto/howto.xml $(HOWTO_DEPS)
        @test -d howto/html || mkdir howto/html
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.149 phpdoc/configure.in:1.150
--- phpdoc/configure.in:1.149   Sun May 19 14:25:44 2002
+++ phpdoc/configure.in Sat May 25 13:03:46 2002
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.149 2002/05/19 18:25:44 tom Exp $
+dnl $Id: configure.in,v 1.150 2002/05/25 17:03:46 jimw Exp $
 
 dnl autoconf initialisation
 AC_INIT()
@@ -446,10 +446,12 @@
     ZEND_FIGURES="cp -r $ZENDAPI/figures ."
     ZEND_FIGURES_HTML="$ZEND_FIGURES/html"
     ZEND_FIGURES_PHP="$ZEND_FIGURES/php"
+    FIGURES="figures"
   else
     ZEND_FIGURES=""
     ZEND_FIGURES_HTML=""
     ZEND_FIGURES_PHP=""
+    FIGURES=""
   fi
 ])
 
@@ -457,6 +459,7 @@
 AC_SUBST(ZEND_FIGURES)
 AC_SUBST(ZEND_FIGURES_HTML)
 AC_SUBST(ZEND_FIGURES_PHP)
+AC_SUBST(FIGURES)
 
 dnl }}}
 


Reply via email to