IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6018


Ignore:
Timestamp:
Jan 16, 2006, 8:58:45 AM (20 years ago)
Author:
eugene
Message:

fixed dependencies

Location:
trunk/doc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/Makefile

    r6017 r6018  
    44
    55all:
    6         for i in $(DIR); do (cd $$i; make all); done
     6        for i in $(DIR); do (cd $$i; make all || exit); done
    77
    88clean:
    99        @rm -f *~ #* .*~
    10         for i in $(DIR); do (cd $$i; make clean); done
     10        for i in $(DIR); do (cd $$i; make clean || exit); done
    1111
    1212dist:
    1313        @rm -f *~ #* .*~
    14         for i in $(DIR); do (cd $$i; make dist); done
     14        for i in $(DIR); do (cd $$i; make dist || exit); done
  • trunk/doc/design/Makefile

    r6009 r6018  
    1 # $Id: Makefile,v 1.12 2006-01-16 01:11:39 eugene Exp $
     1# $Id: Makefile,v 1.13 2006-01-16 18:58:45 eugene Exp $
    22
    33PDFLATEX = env TEXINPUTS=../../latex/inputs:$(TEXINPUTS):.: pdflatex
     
    1616ippSRS.pdf : ippSRS.tex
    1717        ./trace.pl ippSRS.tex ippSRSout.tex ippSRStrace.tex
    18         $(PSLATEX) ippSRSout.tex
    19         $(PSLATEX) ippSRSout.tex
    20         dvips -z -t letter -o ippSRSout.ps ippSRSout.dvi
    21         ps2pdf $ippSRSout.ps $ippSRSout.pdf
    22         thumbpdf --modes=dvips $ippSRSout.pdf
    23         $(PSLATEX) ippSRSout.tex
    24         dvips -z -t letter -o ippSRSout.ps ippSRSout.dvi
    25         ps2pdf ippSRSout.ps ippSRSout.pdf
     18        make ippSRSout.pdf
    2619        mv ippSRSout.pdf ippSRS.pdf
    27         @rm -f ippSRSout.ps ippSRSout.dvi ippSRSout.aux ippSRSout.log body.tmp head.tmp
    28         @rm -f ippSRSout.tbr ippSRSout.tbd ippSRSout.ent ippSRSout.lof ippSRSout.loc ippSRSout.tpm
     20        rm -f ippSRSout.tex ippSRStrace.tex
    2921
    3022%.pdf: %.tex
  • trunk/doc/misc/Makefile

    r3156 r6018  
    1 # $Id: Makefile,v 1.4 2005-02-08 04:56:59 eugene Exp $
     1# $Id: Makefile,v 1.5 2006-01-16 18:58:45 eugene Exp $
    22
    33PDFLATEX = env TEXINPUTS=../../latex/inputs:$(TEXINPUTS):.: pdflatex
     
    1111        dvips -z -t letter -o $*.ps $*.dvi
    1212        ps2pdf $*.ps $*.pdf
    13         @rm -f $*.ps $*.dvi $*.aux $*.log $*.tbr $*.tbd $*.lof $*.toc head.tmp body.tmp
     13        thumbpdf --modes=dvips $*.pdf
     14        $(PSLATEX) $*.tex
     15        dvips -z -t letter -o $*.ps $*.dvi
     16        ps2pdf $*.ps $*.pdf
     17        @rm -f $*.ps $*.dvi $*.aux $*.log $*.tbr $*.tbd $*.tpm $*.lof $*.toc head.tmp body.tmp
    1418
    1519clean :
    16         $(RM) *.log *.dvi *.aux *.toc *.tbd *.tbr *.lof *.out *~ core head.tmp body.tmp
     20        $(RM) *.log *.dvi *.aux *.toc *.tbd *.tbr *.tpm *.lof *.out *~ core head.tmp body.tmp
     21
     22dist : clean
     23                $(RM) *.pdf
    1724
    1825empty : clean
Note: See TracChangeset for help on using the changeset viewer.