IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 6, 2017, 11:15:00 AM (10 years ago)
Author:
eugene
Message:

merge changes from trunk (updates to the papers)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20160809/doc/release.2015/Makefile.Common

    r37888 r39920  
    11# $Id: Makefile,v 1.16 2006-01-16 01:11:40 eugene Exp $
    22
    3 PDFLATEX = env TEXINPUTS=.:..:inputs:../inputs:LaTeX:$(TEXINPUTS): pdflatex
    4 PSLATEX  = env TEXINPUTS=.:..:inputs:../inputs:LaTeX:$(TEXINPUTS): latex
     3PDFLATEX = env TEXINPUTS=.:../inputs: pdflatex
     4PSLATEX  = env TEXINPUTS=.:../inputs: latex
     5BIBTEX   = env BIBINPUTS=.:../inputs BSTINPUTS=.:../inputs bibtex
    56
    67PS2PDF_OPTS = "-dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode"
    78
     9ifeq ($(DO_PDFLATEX),1)
     10     MY_LATEX  = $(PDFLATEX)
     11else
     12     MY_LATEX  = $(PSLATEX)
     13endif
     14
    815%.pdf: %.tex
    9         $(PSLATEX) $*.tex
    10         $(PSLATEX) $*.tex
     16        $(MY_LATEX) $*.tex
     17        if [ $(DO_BIBTEX) -eq 1 ]; then $(BIBTEX) $*; fi
     18        $(MY_LATEX) $*.tex
     19        if [ $(DO_BIBTEX) -eq 1  ]; then $(MY_LATEX) $*.tex; fi
    1120#       thumbpdf --modes=dvips $*.pdf
    12 #       $(PSLATEX) $*.tex
    13         dvips -z -t letter -o $*.ps $*.dvi
    14         ps2pdf $(PS2PSF_OPT) $*.ps $*.pdf
     21#       $(MY_LATEX) $*.tex
     22        if [ $(DO_PDFLATEX) -eq 0 ]; then dvips -z -t letter -o $*.ps $*.dvi; fi
     23        if [ $(DO_PDFLATEX) -eq 0 ]; then ps2pdf $(PS2PDF_OPTS) $*.ps $*.pdf; fi
    1524#       @rm -f $*.ps $*.dvi $*.aux $*.log $*.tbr $*.tbd $*.toc $*.tpm $*.lof body.tmp head.tmp
    1625
     26%.tgz:
     27        tar --transform 's%inputs/%%' -zcf $@ $(FILES) $*.bbl
    1728clean :
    1829        $(RM) *.bib *.log *.dvi *.aux *.toc *.tbd *.tbr *.tpm *.lof *.out *~ core body.tmp head.tmp
     
    2233
    2334empty: clean
     35
     36foo:
     37        @echo all: $^
     38        @echo 1st: $<
     39        @echo file: $@
     40        @echo word: $*
Note: See TracChangeset for help on using the changeset viewer.