Changeset d5ccbe9 for doc/papers/concurrency/Makefile
- Timestamp:
- Mar 16, 2018, 1:57:38 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:
- fdfced6
- Parents:
- 759f05f
- git-author:
- Peter A. Buhr <pabuhr@…> (03/16/18 12:14:02)
- git-committer:
- Peter A. Buhr <pabuhr@…> (03/16/18 13:57:38)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/concurrency/Makefile
r759f05f rd5ccbe9 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 = .:style: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.