Ignore:
Timestamp:
Apr 17, 2018, 12:01:09 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/papers/concurrency/Makefile

    rb2fe1c9 r32cab5b  
    33Build = build
    44Figures = figures
    5 Macros = ../../LaTeXmacros
    6 TeXLIB = .:style:annex:${Macros}:${Build}:../../bibliography:
     5Macros = AMA/AMA-stix/ama
     6TeXLIB = .:annex:../../LaTeXmacros:${Macros}:${Build}:../../bibliography:
    77LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
    88BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
    99
    10 MAKEFLAGS = --no-print-directory --silent #
     10MAKEFLAGS = --no-print-directory # --silent
    1111VPATH = ${Build} ${Figures}
    1212
     
    4040
    4141DOCUMENT = Paper.pdf
     42BASE = ${basename ${DOCUMENT}}
    4243
    4344# Directives #
     
    4849
    4950clean :
    50         @rm -frv ${DOCUMENT} ${basename ${DOCUMENT}}.ps ${Build}
     51        @rm -frv ${DOCUMENT} ${BASE}.ps WileyNJD-AMA.bst ${BASE}.out.ps ${Build}
    5152
    5253# File Dependencies #
    5354
    54 ${DOCUMENT} : ${basename ${DOCUMENT}}.ps
     55${DOCUMENT} : ${BASE}.ps
    5556        ps2pdf $<
    5657
    57 ${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi
     58${BASE}.ps : ${BASE}.dvi
    5859        dvips ${Build}/$< -o $@
    5960
    60 ${basename ${DOCUMENT}}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \
    61                 ${Macros}/common.tex ${Macros}/indexstyle annex/local.bib ../../bibliography/pl.bib
     61${BASE}.dvi : Makefile ${Build} ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \
     62                annex/local.bib ../../bibliography/pl.bib
    6263        # Must have *.aux file containing citations for bibtex
    6364        if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
    64         -${BibTeX} ${Build}/${basename $@}
     65        ${BibTeX} ${Build}/${basename $@}
    6566        # Some citations reference others so run again to resolve these citations
    6667        ${LaTeX} ${basename $@}.tex
    67         -${BibTeX} ${Build}/${basename $@}
     68        ${BibTeX} ${Build}/${basename $@}
    6869        # Run again to finish citations
    6970        ${LaTeX} ${basename $@}.tex
     
    7374${Build}:
    7475        mkdir -p ${Build}
     76
     77${BASE}.out.ps:
     78        ln -fs build/Paper.out.ps .
     79
     80WileyNJD-AMA.bst:
     81        ln -fs AMA/AMA-stix/ama/WileyNJD-AMA.bst .
    7582
    7683%.tex : %.fig
Note: See TracChangeset for help on using the changeset viewer.