Changeset b067d9b for doc/papers/concurrency/Makefile
- Timestamp:
- Oct 29, 2019, 4:01:24 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 773db65, 9421f3d8
- Parents:
- 7951100 (diff), 8364209 (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/papers/concurrency/Makefile
r7951100 rb067d9b 4 4 Figures = figures 5 5 Macros = ../AMA/AMA-stix/ama 6 TeXLIB = .: annex:../../LaTeXmacros:${Macros}:${Build}:../../bibliography:6 TeXLIB = .:../../LaTeXmacros:${Macros}:${Build}: 7 7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 8 BibTeX = BIBINPUTS= ${TeXLIB}&& export BIBINPUTS && bibtex8 BibTeX = BIBINPUTS=annex:../../bibliography: && export BIBINPUTS && bibtex 9 9 10 10 MAKEFLAGS = --no-print-directory # --silent … … 15 15 SOURCES = ${addsuffix .tex, \ 16 16 Paper \ 17 style/style \18 style/cfa-format \19 17 } 20 18 21 19 FIGURES = ${addsuffix .tex, \ 22 monitor \23 ext_monitor \24 20 int_monitor \ 25 21 dependency \ 22 RunTimeStructure \ 26 23 } 27 24 28 25 PICTURES = ${addsuffix .pstex, \ 26 FullProdConsStack \ 27 FullCoroutinePhases \ 28 corlayout \ 29 CondSigWait \ 30 monitor \ 31 ext_monitor \ 29 32 system \ 30 33 monitor_structs \ … … 59 62 dvips ${Build}/$< -o $@ 60 63 61 ${BASE}.dvi : Makefile ${B uild} ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \62 annex/local.bib ../../bibliography/pl.bib 64 ${BASE}.dvi : Makefile ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 65 annex/local.bib ../../bibliography/pl.bib | ${Build} 63 66 # Must have *.aux file containing citations for bibtex 64 67 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 65 ${BibTeX} ${Build}/${basename $@}68 -${BibTeX} ${Build}/${basename $@} 66 69 # Some citations reference others so run again to resolve these citations 67 70 ${LaTeX} ${basename $@}.tex 68 ${BibTeX} ${Build}/${basename $@}71 -${BibTeX} ${Build}/${basename $@} 69 72 # Run again to finish citations 70 73 ${LaTeX} ${basename $@}.tex … … 72 75 ## Define the default recipes. 73 76 74 ${Build} :77 ${Build} : 75 78 mkdir -p ${Build} 76 79 77 ${BASE}.out.ps :${Build}80 ${BASE}.out.ps : | ${Build} 78 81 ln -fs ${Build}/Paper.out.ps . 79 82 80 WileyNJD-AMA.bst :83 WileyNJD-AMA.bst : 81 84 ln -fs ../AMA/AMA-stix/ama/WileyNJD-AMA.bst . 82 85 83 %.tex : %.fig ${Build}86 %.tex : %.fig | ${Build} 84 87 fig2dev -L eepic $< > ${Build}/$@ 85 88 86 %.ps : %.fig ${Build}89 %.ps : %.fig | ${Build} 87 90 fig2dev -L ps $< > ${Build}/$@ 88 91 89 %.pstex : %.fig ${Build}92 %.pstex : %.fig | ${Build} 90 93 fig2dev -L pstex $< > ${Build}/$@ 91 94 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note:
See TracChangeset
for help on using the changeset viewer.