||*()*|| Hi, phpdoc.

Can anybody familiar with *nix maketools tell me - when make rebuilds
some target - does it rebuild target's dependencies?

at> techtonik               Thu Mar  3 15:42:32 2005 EDT

at>   Modified files:              
at>     /phpdoc     configure.in Makefile.in 
at>   Log:
at>   fix bug #31932 : images are missing in the manual
  
at> http://cvs.php.net/diff.php/phpdoc/configure.in?r1=1.218&r2=1.219&ty=u
at> Index: phpdoc/configure.in
at> diff -u phpdoc/configure.in:1.218 phpdoc/configure.in:1.219
at> --- phpdoc/configure.in:1.218   Tue Mar  1 12:28:40 2005
at> +++ phpdoc/configure.in Thu Mar  3 15:42:30 2005
at> @@ -1,4 +1,4 @@
at> -dnl $Id: configure.in,v 1.218 2005/03/01 17:28:40 techtonik Exp $
at> +dnl $Id: configure.in,v 1.219 2005/03/03 20:42:30 techtonik Exp $
 
at>  dnl autoconf initialisation
at>  AC_INIT()
at> @@ -524,15 +524,15 @@
at>  ])
 
at>  if test -d "$ZENDAPI"; then
at> -  ZEND_FIGURES="cp -r $ZENDAPI/figures ."
at> -  ZEND_FIGURES_HTML="$ZEND_FIGURES/html"
at> -  ZEND_FIGURES_PHP="$ZEND_FIGURES/php"
at>    FIGURES="figures"
at> +  ZEND_FIGURES="cp $ZENDAPI/figures/*.png ."
at> +  ZEND_FIGURES_HTML="$ZEND_FIGURES/html/$FIGURES"
at> +  ZEND_FIGURES_PHP="$ZEND_FIGURES/php/$FIGURES"
at>  else
at> +  FIGURES=""
at>    ZEND_FIGURES=""
at>    ZEND_FIGURES_HTML=""
at>    ZEND_FIGURES_PHP=""
at> -  FIGURES=""
at>  fi
 
at>  AC_MSG_RESULT($ZENDAPI)
at> http://cvs.php.net/diff.php/phpdoc/Makefile.in?r1=1.159&r2=1.160&ty=u
at> Index: phpdoc/Makefile.in
at> diff -u phpdoc/Makefile.in:1.159 phpdoc/Makefile.in:1.160
at> --- phpdoc/Makefile.in:1.159    Fri Feb 11 10:57:49 2005
at> +++ phpdoc/Makefile.in  Thu Mar  3 15:42:31 2005
at> @@ -16,7 +16,7 @@
at>  #
 
at>  #
at> -# $Id: Makefile.in,v 1.159 2005/02/11 15:57:49 derick Exp $
at> +# $Id: Makefile.in,v 1.160 2005/03/03 20:42:31 techtonik Exp $
at>  #
 
at>  all: html
at> @@ -84,11 +84,11 @@
at>         @ZEND_FIGURES@
 
at>  zendapihtml: 
at> -       rm -rf html && mkdir html
at> +       rm -rf html && mkdir html && mkdir html/@FIGURES@
at>         @ZEND_FIGURES_HTML@
 
at>  zendapiphp: 
at> -       rm -rf php && mkdir php
at> +       rm -rf php && mkdir php && mkdir php/@FIGURES@
at>         @ZEND_FIGURES_PHP@
 
at>  html: html/index.html
at> @@ -167,8 +167,6 @@
at>  @[EMAIL PROTECTED]: @[EMAIL PROTECTED] $(BIGHTML_DEPS)
 
at>  html/index.html: manual.xml $(HTML_DEPS)
at> -       rm -rf html && mkdir html
at> -       @ZEND_FIGURES_HTML@
at>         $(PHP) -q $(scriptdir)/rtlpatch/hackmanuallang.php $(LANGDIR)
at>         $(JADE) $(CATALOG) -d $(HTML_STYLESHEET) -V use-output-dir -t sgml 
$(XMLDCL) manual.xml
at>         $(PHP) -q $(scriptdir)/html_syntax.php html html/
at> @@ -177,8 +175,6 @@
 
at>  # still needs more tweaks!!
at>  html_xsl: manual.xml zendapihtml
at> -       rm -rf html && mkdir html
at> -       @ZEND_FIGURES_HTML@
at>         ${XSLTPROC} xsl/html.xsl manual.xml
 
at>  bightml_xsl: manual.xml zendapi
at> @@ -192,17 +188,16 @@
at>         ${XSLTPROC} $(HOWTO_XSL_SHEET) ./howto/howto.xml
 
at>  chm_xsl: manual.xml
at> -       rm -rf ./htmlhelp/html && mkdir ./htmlhelp/html
at> +       rm -rf ./htmlhelp/html && mkdir ./htmlhelp/html && mkdir 
./htmlhelp/html/@FIGURES@
at> +       @ZEND_FIGURES@/htmlhelp/html/@FIGURES@
at>         ${XSLTPROC} $(CHM_XSL_SHEET) manual.xml
  
at>  phpweb_xsl: manual.xml zendapiphp
at> -       rm -rf php && mkdir php
at>         ${XSLTPROC} $(srcdir)/xsl/phpweb.xsl manual.xml
at>         $(PHP) -q $(scriptdir)/fixphpweb.php `pwd`/php
 
at>  php/index.php: manual.xml $(PHPWEB_DEPS)
at>         $(PHP) -q $(scriptdir)/phpweb-entities.php `pwd` phpweb
at> -       rm -rf php && mkdir php
at>         $(PHP) -q $(scriptdir)/rtlpatch/hackmanuallang.php $(LANGDIR)
at>         -$(JADE) $(CATALOG) -d $(PHPWEB_STYLESHEET) -V use-output-dir -t 
sgml $(XMLDCL) manual.xml
at>         $(PHP) -q $(scriptdir)/html_syntax.php php php/

t
-- 

Reply via email to