Changeset 3284

Show
Ignore:
Timestamp:
04/27/08 14:43:50 (5 months ago)
Author:
dgollub
Message:

There is no dvi2ps on my system - it's called dvips, isn't it?
Don't use pdflatex, otherwise the "draft" module doesn't work.
Introduced make clean and make mrproper for the whitepaper.

TODO: make the whitepaper build env aware of cmake

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/whitepaper/Makefile

    r3206 r3284  
    44%.dvi:  %.tex 
    55        pslatex $< 
     6        pslatex $< 
    67 
    78%.ps:   %.dvi 
    8         dvi2ps $< 
     9        dvips $< 
    910 
    1011%.pdf:  %.ps 
    1112        ps2pdf $< 
    1213 
    13 %.pdf:  %.tex 
    14         pdflatex $< 
     14#%.pdf: %.tex 
     15#       pdflatex $< 
     16#       pdflatex $< 
     17 
     18clean: 
     19        rm -f *.ps *.dvi *.pdf 
     20 
     21mrproper: clean 
     22        rm -f *.log *.out *.aux *.toc 
     23