Changes in doc/papers/concurrency/Makefile [bd12159:fb16d5c]
- File:
-
- 1 edited
-
doc/papers/concurrency/Makefile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/concurrency/Makefile
rbd12159 rfb16d5c 4 4 Figures = figures 5 5 Macros = ../AMA/AMA-stix/ama 6 TeXLIB = .: ../../LaTeXmacros:${Macros}:${Build}:6 TeXLIB = .:annex:../../LaTeXmacros:${Macros}:${Build}:../../bibliography: 7 7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 8 BibTeX = BIBINPUTS= annex:../../bibliography:&& export BIBINPUTS && bibtex8 BibTeX = BIBINPUTS=${TeXLIB} && 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 \ 17 19 } 18 20 19 21 FIGURES = ${addsuffix .tex, \ 22 monitor \ 23 ext_monitor \ 20 24 int_monitor \ 21 25 dependency \ 22 RunTimeStructure \23 26 } 24 27 25 28 PICTURES = ${addsuffix .pstex, \ 26 FullProdConsStack \27 FullCoroutinePhases \28 corlayout \29 CondSigWait \30 monitor \31 ext_monitor \32 29 system \ 33 30 monitor_structs \ … … 62 59 dvips ${Build}/$< -o $@ 63 60 64 ${BASE}.dvi : Makefile ${B ASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \65 annex/local.bib ../../bibliography/pl.bib | ${Build}61 ${BASE}.dvi : Makefile ${Build} ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 62 annex/local.bib ../../bibliography/pl.bib 66 63 # Must have *.aux file containing citations for bibtex 67 64 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 68 -${BibTeX} ${Build}/${basename $@}65 ${BibTeX} ${Build}/${basename $@} 69 66 # Some citations reference others so run again to resolve these citations 70 67 ${LaTeX} ${basename $@}.tex 71 -${BibTeX} ${Build}/${basename $@}68 ${BibTeX} ${Build}/${basename $@} 72 69 # Run again to finish citations 73 70 ${LaTeX} ${basename $@}.tex … … 75 72 ## Define the default recipes. 76 73 77 ${Build} :74 ${Build}: 78 75 mkdir -p ${Build} 79 76 80 ${BASE}.out.ps : |${Build}77 ${BASE}.out.ps: ${Build} 81 78 ln -fs ${Build}/Paper.out.ps . 82 79 83 WileyNJD-AMA.bst :80 WileyNJD-AMA.bst: 84 81 ln -fs ../AMA/AMA-stix/ama/WileyNJD-AMA.bst . 85 82 86 %.tex : %.fig |${Build}83 %.tex : %.fig ${Build} 87 84 fig2dev -L eepic $< > ${Build}/$@ 88 85 89 %.ps : %.fig |${Build}86 %.ps : %.fig ${Build} 90 87 fig2dev -L ps $< > ${Build}/$@ 91 88 92 %.pstex : %.fig |${Build}89 %.pstex : %.fig ${Build} 93 90 fig2dev -L pstex $< > ${Build}/$@ 94 91 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note:
See TracChangeset
for help on using the changeset viewer.