IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 40564 for trunk


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)

Location:
trunk/doc/release.2015
Files:
3 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
  • trunk/doc/release.2015/ps1.datasystem/Makefile

    r40072 r40564  
    1111tgz: datasystem.tgz
    1212pdf: datasystem.pdf
     13
     14quick: datasystem.quick.pdf
    1315
    1416FILES = \
  • trunk/doc/release.2015/ps1.detrend/Makefile

    r40562 r40564  
    1111tgz: detrend.tgz
    1212pdf: detrend.pdf
     13
     14quick: detrend.quick.pdf
    1315
    1416FILES = \
Note: See TracChangeset for help on using the changeset viewer.