IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 30, 2017, 6:23:26 AM (9 years ago)
Author:
eugene
Message:

extensive wordsmithing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/release.2015/Makefile.Common

    r39974 r40022  
    1414
    1515%.pdf: %.tex
    16         $(MY_LATEX) $*.tex
    17 
    18 #       $(MY_LATEX) $*.tex; if [ $? -eq 1 ]; then rm $*.pdf; exit 1; fi
    19 
    20 junk:
    21         if [ $(DO_BIBTEX) -eq 1 ]; then $(BIBTEX) $*; fi
    22         $(MY_LATEX) $*.tex; if [ $? -eq 1 ]; then rm $*.pdf; exit 1; fi
    23         if [ $(DO_BIBTEX) -eq 1  ]; then $(MY_LATEX) $*.tex; fi
     16#       need to remove the output pdf file if the latex fails or we cannot re-run
     17        $(MY_LATEX) $*.tex || (rm $*.pdf; exit 1)
     18        if [ $(DO_BIBTEX) -eq 1 ]; then $(BIBTEX) $* || (echo fail; exit 1); fi
     19#       need to re-run latex to get the reference right
     20        $(MY_LATEX) $*.tex || (rm $*.pdf; exit 1)
     21#       if we are running bibtex, we need to re-run latex AGAIN to get the reference right
     22        if [ $(DO_BIBTEX) -eq 1  ]; then $(MY_LATEX) $*.tex || (rm $*.pdf; exit 1); fi
    2423#       thumbpdf --modes=dvips $*.pdf
    2524#       $(MY_LATEX) $*.tex
Note: See TracChangeset for help on using the changeset viewer.