tom Sat May 18 13:45:37 2002 EDT
Modified files:
/phpdoc Makefile.in
Log:
quick&dirty-implementation of images into the manual
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.113 phpdoc/Makefile.in:1.114
--- phpdoc/Makefile.in:1.113 Sat Feb 9 18:51:38 2002
+++ phpdoc/Makefile.in Sat May 18 13:45:24 2002
@@ -13,7 +13,7 @@
#
#
-# $Id: Makefile.in,v 1.113 2002/02/09 23:51:38 jimw Exp $
+# $Id: Makefile.in,v 1.114 2002/05/18 17:45:24 tom Exp $
#
all: html
@@ -33,7 +33,7 @@
CATALOG=@CATALOG@
-VERSION="@PHP_VERSION@"
+VERSION="@PHPVERSION@"
HTML_STYLESHEET=dsssl/html.dsl
PHPWEB_STYLESHEET=dsssl/phpweb.dsl
HOWTO_STYLESHEET=dsssl/howto.dsl
@@ -42,10 +42,11 @@
KDEVELOP_TOC_STYLESHEET=dsssl/kdevelop_toc.dsl
XMLDCL=$(srcdir)/dtds/dbxml-@DOCBOOK_VERSION@/phpdocxml.dcl
-HTML_DEPS=$(HTML_STYLESHEET) dsssl/html-common.dsl dsssl/html-locale.dsl.in
dsssl/common.dsl.in zendapi
+BIGHTML_DEPS=$(HTML_STYLESHEET) dsssl/html-common.dsl dsssl/html-locale.dsl.in
+dsssl/common.dsl.in zendapi
+HTML_DEPS=$(HTML_STYLESHEET) dsssl/html-common.dsl dsssl/html-locale.dsl.in
+dsssl/common.dsl.in zendapihtml
HOWTO_DEPS=$(HOWTO_STYLESHEET) dsssl/html-common.dsl dsssl/html-locale.dsl.in
dsssl/common.dsl.in howto/howto.ent
PRINT_DEPS=$(PRINT_STYLESHEET) dsssl/common.dsl.in dsssl/print.dsl.in zendapi
-PHPWEB_DEPS=$(PHPWEB_STYLESHEET) dsssl/html-common.dsl dsssl/common.dsl zendapi
+PHPWEB_DEPS=$(PHPWEB_STYLESHEET) dsssl/html-common.dsl dsssl/common.dsl zendapiphp
KDEVELOP_TOC_DEPS=dsssl/kdevelop_toc.dsl Makefile
DIST_FILES=@MANUAL@.tar.bz2 @[email protected] @[email protected]
@@ -69,6 +70,14 @@
zendapi:
@ZEND_FIGURES@
+zendapihtml:
+ @test -d html || mkdir html
+ @ZEND_FIGURES@/html
+
+zendapiphp:
+ @test -d php || mkdir php
+ @ZEND_FIGURES@/php
+
html: html/index.html
bightml: @[email protected]
phpweb: php/index.php
@@ -138,7 +147,7 @@
@[email protected]: manual.xml
cp manual.xml $@
-@MANUAL@.html: @[email protected] $(HTML_DEPS)
+@MANUAL@.html: @[email protected] $(BIGHTML_DEPS)
html/index.html: manual.xml $(HTML_DEPS)
@test -d html || mkdir html
@@ -158,13 +167,13 @@
iSilo386 @[email protected] @[email protected]
@[email protected]: html/index.html
- -rm -f $@ && (cd html; zip -9 -q ../$@ *.html)
+ -rm -f $@ && (cd html; zip -9 -q ../$@ *.html figures/*)
@[email protected]: html/index.html
- -rm -f $@ && (cd html; tar -cf - *.html) | gzip -9 > $@
+ -rm -f $@ && (cd html; tar -cf - *.html figures) | gzip -9 > $@
@[email protected]: 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