Ignore:
Timestamp:
Dec 22, 2017, 1:49:23 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:
c1bf35f
Parents:
6dfa2e1 (diff), 3eb4541 (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/proposals/concurrency/Makefile

    r6dfa2e1 r05a0ff2  
    7575        build/*.tex     \
    7676        build/*.toc     \
     77        figures/*.tex   \
     78        *.png           \
    7779
    7880
     
    117119        fig2dev -L pstex_t -p $@ $< > $@_t
    118120
     121figures/%.tex: build/%.pstex
     122        echo -n         "\documentclass[preview]{standalone}\n"         \
     123                        "\usepackage[T1]{fontenc}\n"                    \
     124                        "\usepackage[usenames]{color}\n"                \
     125                        "\usepackage{graphicx}\n"                       \
     126                        "\usepackage{listings}\n"                       \
     127                        "\usepackage{xspace}\n"                         \
     128                        "\input{style}\n"                               \
     129                        "\\\\begin{document}\n"                         \
     130                        "{\\\\resizebox{3\\\\textwidth}{!}{\input{${basename ${notdir $@}}.pstex_t}}}\n" \
     131                        "\end{document}" > $@
     132
     133%.png : build/%.pstex figures/%.tex
     134        echo ${basename $@}
     135        ${LaTeX} figures/${basename $@}.tex
     136        dvips build/${basename $@}.dvi -o build/${basename $@}.ps
     137        ps2pdf build/${basename $@}.ps
     138        convert -negate ${basename $@}.pdf $@
     139
     140
    119141
    120142# Local Variables: #
Note: See TracChangeset for help on using the changeset viewer.