IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 5, 2018, 6:12:51 AM (8 years ago)
Author:
eugene
Message:

add option to do a quick remake (one latex pass only)

File:
1 edited

Legend:

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

    r40309 r40564  
    2626        if [ $(DO_PDFLATEX) -eq 0 ]; then ps2pdf $(PS2PDF_OPTS) $*.ps $*.pdf; fi
    2727
     28%.quick.pdf: %.tex
     29#       need to remove the output pdf file if the latex fails or we cannot re-run
     30        $(MY_LATEX) $*.tex || (rm $*.pdf; exit 1)
     31        if [ $(DO_PDFLATEX) -eq 0 ]; then dvips -z -t letter -o $*.ps $*.dvi; fi
     32        if [ $(DO_PDFLATEX) -eq 0 ]; then ps2pdf $(PS2PDF_OPTS) $*.ps $*.pdf; fi
     33
    2834%.tgz:
    2935        tar --transform 's%inputs/%%' -zcf $@ $(FILES) $*.bbl
Note: See TracChangeset for help on using the changeset viewer.