Ignore:
Timestamp:
Feb 2, 2018, 4:00:09 PM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
d03fa6d
Parents:
11b7028 (diff), d7d4702 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:/u/cforall/software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/thierry_delisle/Makefile

    r11b7028 r3ce0c915  
    9898        fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
    9999
    100 %.tex: %.pstex
     100#-----------------------------------------------------------------------------------
     101# Tools to generate png files
     102# to create a png we create a pdf and convert it to png
     103%.png : build/%.pstex figures/%.tex
     104        echo ${basename $@}
     105        ${LaTeX} figures/${basename $@}.tex
     106        dvips build/${basename $@}.dvi -o build/${basename $@}.ps
     107        ps2pdf build/${basename $@}.ps
     108        convert -negate ${basename $@}.pdf $@
     109
     110# creating a pdf of a figure requires generating some latex that just includes the figure
     111figures/%.tex: build/%.pstex
    101112        echo -n         "\documentclass[preview]{standalone}\n"         \
    102113                        "\usepackage[T1]{fontenc}\n"                    \
     
    110121                        "\end{document}" > $@
    111122
    112 %.png : %.pstex %.tex
    113         echo ${basename $@}
    114         ${LaTeX} figures/${basename $@}.tex
    115         dvips build/${basename $@}.dvi -o build/${basename $@}.ps
    116         ps2pdf build/${basename $@}.ps
    117         convert -negate ${basename $@}.pdf $@
    118 
    119123# Local Variables: #
    120124# compile-command: "make" #
Note: See TracChangeset for help on using the changeset viewer.