after building docs, on the "docs.html" page, there's a reference to
"whentouse.html",

        <a 
href="whentouse.html">Appropriate&nbsp;Uses&nbsp;For&nbsp;SQLite</a></td>

when i click on it, it's a missing page.

looking in mybuild dir,

        % ls doc/
          arch.html               datatype3.html   oldnews.html
          arch2.gif               datatypes.html   omitted.html
          autoinc.html            docs.html        opcode.html
          c_interface.html        download.html    pragma.html
          capi3.html              faq.html         quickstart.html
          capi3ref.html           fileformat.html  speed.html
          changes.html            formatchng.html  sqlite.gif
          compile.html            index.html       sqlite.html
          conflict.html           lang.html        support.html
          copyright-release.html  lockingv3.html   tclsqlite.html
          copyright-release.pdf   mingw.html       vdbe.html
          copyright.html          nulls.html       version3.html

it is, apparently, missing.

looking in src tree, it *is* there. and referenced in main.mk.

looking in my build's Makefile, i find:

        (...)
        # Rules used to build documentation
        #
        arch.html:      $(TOP)/www/arch.tcl
                        tclsh $(TOP)/www/arch.tcl >arch.html
        (...)
        vdbe.html:      $(TOP)/www/vdbe.tcl
                        tclsh $(TOP)/www/vdbe.tcl >vdbe.html
        
        version3.html:  $(TOP)/www/version3.tcl
                        tclsh $(TOP)/www/version3.tcl >version3.html
        
-->  
        # Files to be published on the website.
        #
        DOC = \
          arch.html \
        (...)
          vdbe.html \
          version3.html
-->  
        doc:    common.tcl $(DOC)
                        mkdir -p doc
                        mv $(DOC) doc
        (...)


where there are references to 'whentouse' missing ( --> ) from main.mk.

staring at main.mk, i'm not seeing why whentouse is NOT making it into
_my_Makefile, but every other doc reference is.

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to