diff --git a/docs/Makefile b/docs/Makefile index 30bf1fbd01..a4bc4eac85 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -30,6 +30,7 @@ help: @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " latexpdf to make LaTeX files and run them through pdflatex" @echo " text to make text files" + @echo " pdf to make pdf files" @echo " man to make manual pages" @echo " texinfo to make Texinfo files" @echo " info to make Texinfo files and run them through makeinfo" @@ -102,6 +103,13 @@ latex: @echo "Run \`make' in that directory to run these through (pdf)latex" \ "(use \`make latexpdf' here to do that automatically)." +pdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/pdf + @echo + @echo "Build finished; the LaTeX files are in $(BUILDDIR)/pdf." + @echo "Run \`make' in that directory to run these through pdf" \ + "(use \`make pdf' here to do that automatically)." + latexpdf: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through pdflatex..." diff --git a/docs/conf.py b/docs/conf.py index 883116e23e..eb7bb3adcc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -40,7 +40,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'Product: FUEL' +project = u'Product - FUEL' copyright = u'2012, Mirantis' # The version info for the project you're documenting, acts as replacement for diff --git a/docs/make.bat b/docs/make.bat index 34e9cb2e85..287532b757 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -131,7 +131,7 @@ if "%1" == "latex" ( ) if "%1" == "pdf" ( - %SPHINXBUILD% -bpdf %ALLSPHINXOPTS% %BUILDDIR%/pdf + %SPHINXBUILD% -b pdf %ALLSPHINXOPTS% %BUILDDIR%/pdf if errorlevel 1 exit /b 1 echo. echo.Build finished; the PDF files are in %BUILDDIR%/pdf.