Ignore:
Timestamp:
Jan 23, 2018, 5:46:43 PM (8 years ago)
Author:
Alan Kennedy <afakenne@…>
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:
258e6ad5
Parents:
b158d8f (diff), 15d248e (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:

add context switch for ARM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/proposals/concurrency/Makefile

    rb158d8f rb6838214  
    11## Define the appropriate configuration variables.
    22
    3 TeXLIB = .:./style:./text:./annex:./build:../../LaTeXmacros:../../LaTeXmacros/listings:../../LaTeXmacros/enumitem:~/bibliographies:
     3TeXLIB = .:./style:./text:./annex:./build:../../LaTeXmacros:../../LaTeXmacros/listings:../../LaTeXmacros/enumitem:~/bibliographies:/usr/local/bibliographies:
    44LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=build -interaction=nonstopmode
    55BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex -terse
     
    7575        build/*.tex     \
    7676        build/*.toc     \
     77        build/*.lof     \
     78        build/*.lol     \
     79        build/*.lot     \
     80        figures/*.tex   \
     81        *.png           \
    7782
    7883
     
    117122        fig2dev -L pstex_t -p $@ $< > $@_t
    118123
     124figures/%.tex: build/%.pstex
     125        echo -n         "\documentclass[preview]{standalone}\n"         \
     126                        "\usepackage[T1]{fontenc}\n"                    \
     127                        "\usepackage[usenames]{color}\n"                \
     128                        "\usepackage{graphicx}\n"                       \
     129                        "\usepackage{listings}\n"                       \
     130                        "\usepackage{xspace}\n"                         \
     131                        "\input{style}\n"                               \
     132                        "\\\\begin{document}\n"                         \
     133                        "{\\\\resizebox{3\\\\textwidth}{!}{\input{${basename ${notdir $@}}.pstex_t}}}\n" \
     134                        "\end{document}" > $@
     135
     136%.png : build/%.pstex figures/%.tex
     137        echo ${basename $@}
     138        ${LaTeX} figures/${basename $@}.tex
     139        dvips build/${basename $@}.dvi -o build/${basename $@}.ps
     140        ps2pdf build/${basename $@}.ps
     141        convert -negate ${basename $@}.pdf $@
     142
     143
    119144
    120145# Local Variables: #
Note: See TracChangeset for help on using the changeset viewer.