Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/papers/concurrency/Makefile

    rbd12159 rfb16d5c  
    44Figures = figures
    55Macros = ../AMA/AMA-stix/ama
    6 TeXLIB = .:../../LaTeXmacros:${Macros}:${Build}:
     6TeXLIB = .:annex:../../LaTeXmacros:${Macros}:${Build}:../../bibliography:
    77LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
    8 BibTeX = BIBINPUTS=annex:../../bibliography: && export BIBINPUTS && bibtex
     8BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
    99
    1010MAKEFLAGS = --no-print-directory # --silent
     
    1515SOURCES = ${addsuffix .tex, \
    1616Paper \
     17style/style \
     18style/cfa-format \
    1719}
    1820
    1921FIGURES = ${addsuffix .tex, \
     22monitor \
     23ext_monitor \
    2024int_monitor \
    2125dependency \
    22 RunTimeStructure \
    2326}
    2427
    2528PICTURES = ${addsuffix .pstex, \
    26 FullProdConsStack \
    27 FullCoroutinePhases \
    28 corlayout \
    29 CondSigWait \
    30 monitor \
    31 ext_monitor \
    3229system \
    3330monitor_structs \
     
    6259        dvips ${Build}/$< -o $@
    6360
    64 ${BASE}.dvi : Makefile ${BASE}.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
    6663        # Must have *.aux file containing citations for bibtex
    6764        if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
    68         -${BibTeX} ${Build}/${basename $@}
     65        ${BibTeX} ${Build}/${basename $@}
    6966        # Some citations reference others so run again to resolve these citations
    7067        ${LaTeX} ${basename $@}.tex
    71         -${BibTeX} ${Build}/${basename $@}
     68        ${BibTeX} ${Build}/${basename $@}
    7269        # Run again to finish citations
    7370        ${LaTeX} ${basename $@}.tex
     
    7572## Define the default recipes.
    7673
    77 ${Build} :
     74${Build}:
    7875        mkdir -p ${Build}
    7976
    80 ${BASE}.out.ps : | ${Build}
     77${BASE}.out.ps: ${Build}
    8178        ln -fs ${Build}/Paper.out.ps .
    8279
    83 WileyNJD-AMA.bst :
     80WileyNJD-AMA.bst:
    8481        ln -fs ../AMA/AMA-stix/ama/WileyNJD-AMA.bst .
    8582
    86 %.tex : %.fig | ${Build}
     83%.tex : %.fig ${Build}
    8784        fig2dev -L eepic $< > ${Build}/$@
    8885
    89 %.ps : %.fig | ${Build}
     86%.ps : %.fig ${Build}
    9087        fig2dev -L ps $< > ${Build}/$@
    9188
    92 %.pstex : %.fig | ${Build}
     89%.pstex : %.fig ${Build}
    9390        fig2dev -L pstex $< > ${Build}/$@
    9491        fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note: See TracChangeset for help on using the changeset viewer.