Changeset 32cab5b for doc/papers/concurrency/Makefile
- Timestamp:
- Apr 17, 2018, 12:01:09 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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- 3265399
- Parents:
- b2fe1c9 (diff), 81bb114 (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
rb2fe1c9 r32cab5b 3 3 Build = build 4 4 Figures = figures 5 Macros = ../../LaTeXmacros6 TeXLIB = .: style:annex:${Macros}:${Build}:../../bibliography:5 Macros = AMA/AMA-stix/ama 6 TeXLIB = .:annex:../../LaTeXmacros:${Macros}:${Build}:../../bibliography: 7 7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 8 8 BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex 9 9 10 MAKEFLAGS = --no-print-directory --silent #10 MAKEFLAGS = --no-print-directory # --silent 11 11 VPATH = ${Build} ${Figures} 12 12 … … 40 40 41 41 DOCUMENT = Paper.pdf 42 BASE = ${basename ${DOCUMENT}} 42 43 43 44 # Directives # … … 48 49 49 50 clean : 50 @rm -frv ${DOCUMENT} ${ basename ${DOCUMENT}}.ps ${Build}51 @rm -frv ${DOCUMENT} ${BASE}.ps WileyNJD-AMA.bst ${BASE}.out.ps ${Build} 51 52 52 53 # File Dependencies # 53 54 54 ${DOCUMENT} : ${ basename ${DOCUMENT}}.ps55 ${DOCUMENT} : ${BASE}.ps 55 56 ps2pdf $< 56 57 57 ${ basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi58 ${BASE}.ps : ${BASE}.dvi 58 59 dvips ${Build}/$< -o $@ 59 60 60 ${ basename ${DOCUMENT}}.dvi : Makefile ${Build}${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \61 ${Macros}/common.tex ${Macros}/indexstyleannex/local.bib ../../bibliography/pl.bib61 ${BASE}.dvi : Makefile ${Build} ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 62 annex/local.bib ../../bibliography/pl.bib 62 63 # Must have *.aux file containing citations for bibtex 63 64 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 64 -${BibTeX} ${Build}/${basename $@}65 ${BibTeX} ${Build}/${basename $@} 65 66 # Some citations reference others so run again to resolve these citations 66 67 ${LaTeX} ${basename $@}.tex 67 -${BibTeX} ${Build}/${basename $@}68 ${BibTeX} ${Build}/${basename $@} 68 69 # Run again to finish citations 69 70 ${LaTeX} ${basename $@}.tex … … 73 74 ${Build}: 74 75 mkdir -p ${Build} 76 77 ${BASE}.out.ps: 78 ln -fs build/Paper.out.ps . 79 80 WileyNJD-AMA.bst: 81 ln -fs AMA/AMA-stix/ama/WileyNJD-AMA.bst . 75 82 76 83 %.tex : %.fig
Note:
See TracChangeset
for help on using the changeset viewer.