Changeset 79

Show
Ignore:
Timestamp:
Thu Sep 15 19:08:50 2005
Author:
giovannibajo
Message:

Remove ASCII boxes

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/doc/source/Makefile

    r77 r79  
    6 6  
    7 7 all:  
    8           @echo "#############################################################################"  
    9           @echo "# make doc   ===> To generate a html and pdf of the documentation           #"  
    10           @echo "# make html  ===> To generate a html of the documentation                   #"  
    11           @echo "# make pdf   ===> To generate a pdf of the documentation                    #"  
    12           @echo "#############################################################################"  
      8         @echo "make doc   ===> To generate a html and pdf of the documentation"  
      9         @echo "make html  ===> To generate a html of the documentation"  
      10         @echo "make pdf   ===> To generate a pdf of the documentation"  
    13 11  
    14 12  
    15 13 doc: html pdf cleanlogs  
    16           @echo "#############################################################################"  
    17           @echo "# Documentation generated: Please see ../*.html and ../*.pdf for files      #"  
    18           @echo "#############################################################################"  
      14         @echo "Documentation generated: Please see ../*.html and ../*.pdf for files"  
    19 15  
    20 16  
     
    23 19  
    24 20 ../Tutorial.html: Tutorial.rst  
    25           @tools/buildrecursive.py --local --strict --title="PyInstaller Tutorial" --outpath=..  
      21         tools/buildrecursive.py --local --strict --title="PyInstaller Tutorial" --outpath=..  
    25 21  
    26 22 Tutorial.tex: Tutorial.rst  
    27           @tools/rst2newlatex.py --stylesheet-path=stylesheets/latex.tex Tutorial.rst Tutorial.tex  
      23         tools/rst2newlatex.py --stylesheet-path=stylesheets/latex.tex Tutorial.rst Tutorial.tex  
    27 23  
    28 24 ../Tutorial.pdf: Tutorial.tex  
    29           @cd .. ; pdflatex source/Tutorial.tex  
      25         cd .. ; pdflatex source/Tutorial.tex  
    29 25         @echo "#############################################################################"  
    30 26         @echo "# Executing again to fix Table of Content...                                #"  
    31 27         @echo "#############################################################################"  
    32           @cd .. ; pdflatex source/Tutorial.tex  
      28         cd .. ; pdflatex source/Tutorial.tex  
    32 28  
    33 29 clean:  
    34    
    35           @echo "#############################################################################"  
    36           @echo "# make cleanall  ===> To clean everything                                   #"  
    37           @echo "# make cleanlogs ===> To clean *.log, *.aux, etc. but not the .html or .pdf #"  
    38           @echo "#############################################################################"  
      30         @echo "make cleanall  ===> To clean everything"  
      31         @echo "make cleanlogs ===> To clean *.log, *.aux, etc. but not the .html or .pdf"  
    39 32  
    40 33  
    41 34 cleanall: cleanlogs  
    42           @rm -f ../*.pdf  
    43           @rm -f ../*.html  
    44           @echo "#############################################################################"  
    45           @echo "# All logs and documentation removed.                                       #"  
    46           @echo "#############################################################################"  
      35         rm -f ../*.pdf  
      36         rm -f ../*.html  
      37         @echo "All logs and documentation removed."  
    47 38  
    48 39  
    49 40 cleanlogs:  
    50           @rm -f ../*.aux  
    51           @rm -f ../*.out  
    52           @rm -f .log *.log  ../*.log  
    53           @echo "#############################################################################"  
    54           @echo "# All logs and aux removed.                                                 #"  
    55           @echo "#############################################################################"  
      41         rm -f ../*.aux  
      42         rm -f ../*.out  
      43         rm -f .log *.log  ../*.log  
      44         @echo "All logs and aux removed."  
    56 45  
    57 46