hmm, interesting problem.

By default the "make html" target will also build the API documentation.
You don't need this. Please try: "make singlehtml" and see if that works.

Worst case you can just edit the Makefile by hand and remove the apidocs
dependency from the html target. i.e. replace this:
html: apidocs
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."

with this:
html:
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."

Best,
-greg




On Thu, Apr 30, 2015 at 8:51 AM, JP <jeanpaul.ebe...@inhibox.com> wrote:

> Yo Folks,
>
> I need some help building the RDKit documentation (how meta, I need
> documentation on the documentation).
>
> I go in $RDBASE/Docs/Book and I 'make html' which barfs the following:
>
> mkdir -p _build/html/api
> mkdir -p _build/html/cppapi
> cp /opt/RDKit_master/rdkit/docs/*  _build/html/api
> cp: cannot stat ‘/opt/RDKit_master/rdkit/docs/*’: No such file or directory
> make: *** [apidocs] Error 1
>
> This is obvious why ($RDBASE/rdkit/docs/ has nothing in it! - but the dir
> exists).  I also did a find $RDBASE -name "docs" but this returns only one
> directory which I created myself. I guess my question has two parts to it.
>
> The first is what is the make process trying to copy (what are the correct
> values for APIDOCSHOME  and CPPAPIDOCSHOME)?  And the second is should this
> work out of the box (why don't the defaults of 'make html' just work) ?
>
> Thank you!
>
> -
> Jean-Paul Ebejer
> Early Stage Researcher
>
>
> ------------------------------------------------------------------------------
> One dashboard for servers and applications across Physical-Virtual-Cloud
> Widest out-of-the-box monitoring support with 50+ applications
> Performance metrics, stats and reports that give you Actionable Insights
> Deep dive visibility with transaction tracing using APM Insight.
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> _______________________________________________
> Rdkit-discuss mailing list
> Rdkit-discuss@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/rdkit-discuss
>
>
------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Rdkit-discuss mailing list
Rdkit-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rdkit-discuss

Reply via email to