Changeset b6838214 for doc/proposals/concurrency/Makefile
- Timestamp:
- Jan 23, 2018, 5:46:43 PM (8 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/proposals/concurrency/Makefile
rb158d8f rb6838214 1 1 ## Define the appropriate configuration variables. 2 2 3 TeXLIB = .:./style:./text:./annex:./build:../../LaTeXmacros:../../LaTeXmacros/listings:../../LaTeXmacros/enumitem:~/bibliographies: 3 TeXLIB = .:./style:./text:./annex:./build:../../LaTeXmacros:../../LaTeXmacros/listings:../../LaTeXmacros/enumitem:~/bibliographies:/usr/local/bibliographies: 4 4 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=build -interaction=nonstopmode 5 5 BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex -terse … … 75 75 build/*.tex \ 76 76 build/*.toc \ 77 build/*.lof \ 78 build/*.lol \ 79 build/*.lot \ 80 figures/*.tex \ 81 *.png \ 77 82 78 83 … … 117 122 fig2dev -L pstex_t -p $@ $< > $@_t 118 123 124 figures/%.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 119 144 120 145 # Local Variables: #
Note:
See TracChangeset
for help on using the changeset viewer.