Changeset c653b37 for doc/papers/concurrency/Makefile
- Timestamp:
- Jun 28, 2018, 4:04:11 PM (7 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- e3b2474
- Parents:
- a12c81f3 (diff), 944ce47 (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
ra12c81f3 rc653b37 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 monitor \ 27 ext_monitor \ 29 28 system \ 30 29 monitor_structs \ … … 59 58 dvips ${Build}/$< -o $@ 60 59 61 ${BASE}.dvi : Makefile ${B uild} ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \62 annex/local.bib ../../bibliography/pl.bib 60 ${BASE}.dvi : Makefile ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 61 annex/local.bib ../../bibliography/pl.bib | ${Build} 63 62 # Must have *.aux file containing citations for bibtex 64 63 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 65 ${BibTeX} ${Build}/${basename $@}64 -${BibTeX} ${Build}/${basename $@} 66 65 # Some citations reference others so run again to resolve these citations 67 66 ${LaTeX} ${basename $@}.tex 68 ${BibTeX} ${Build}/${basename $@}67 -${BibTeX} ${Build}/${basename $@} 69 68 # Run again to finish citations 70 69 ${LaTeX} ${basename $@}.tex … … 72 71 ## Define the default recipes. 73 72 74 ${Build} :73 ${Build} : 75 74 mkdir -p ${Build} 76 75 77 ${BASE}.out.ps :${Build}76 ${BASE}.out.ps : | ${Build} 78 77 ln -fs ${Build}/Paper.out.ps . 79 78 80 WileyNJD-AMA.bst :79 WileyNJD-AMA.bst : 81 80 ln -fs ../AMA/AMA-stix/ama/WileyNJD-AMA.bst . 82 81 83 %.tex : %.fig ${Build}82 %.tex : %.fig | ${Build} 84 83 fig2dev -L eepic $< > ${Build}/$@ 85 84 86 %.ps : %.fig ${Build}85 %.ps : %.fig | ${Build} 87 86 fig2dev -L ps $< > ${Build}/$@ 88 87 89 %.pstex : %.fig ${Build}88 %.pstex : %.fig | ${Build} 90 89 fig2dev -L pstex $< > ${Build}/$@ 91 90 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note:
See TracChangeset
for help on using the changeset viewer.