## Define the configuration variables.

Build = build
Figures = figures
Macros = ../AMA/AMA-stix/ama
TeXLIB = .:../../LaTeXmacros:${Macros}:${Build}:
LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
BibTeX = BIBINPUTS=annex:../../bibliography: && export BIBINPUTS && bibtex

MAKEFLAGS = --no-print-directory # --silent
VPATH = ${Build} ${Figures}

## Define the text source files.

SOURCES = ${addsuffix .tex, \
Paper \
}

FIGURES = ${addsuffix .tex, \
int_monitor \
dependency \
RunTimeStructure \
}

PICTURES = ${addsuffix .pstex, \
FullProdConsStack \
FullCoroutinePhases \
corlayout \
monitor \
ext_monitor \
system \
monitor_structs \
}

PROGRAMS = ${addsuffix .tex, \
}

GRAPHS = ${addsuffix .tex, \
}

## Define the documents that need to be made.

DOCUMENT = Paper.pdf
BASE = ${basename ${DOCUMENT}}

# Directives #

.PHONY : all clean					# not file names

all : ${DOCUMENT}

clean :
	@rm -frv ${DOCUMENT} ${BASE}.ps WileyNJD-AMA.bst ${BASE}.out.ps ${Build}

# File Dependencies #

${DOCUMENT} : ${BASE}.ps
	ps2pdf $<

${BASE}.ps : ${BASE}.dvi
	dvips ${Build}/$< -o $@

${BASE}.dvi : Makefile ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \
		annex/local.bib ../../bibliography/pl.bib | ${Build}
	# Must have *.aux file containing citations for bibtex
	if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
	-${BibTeX} ${Build}/${basename $@}
	# Some citations reference others so run again to resolve these citations
	${LaTeX} ${basename $@}.tex
	-${BibTeX} ${Build}/${basename $@}
	# Run again to finish citations
	${LaTeX} ${basename $@}.tex

## Define the default recipes.

${Build} :
	mkdir -p ${Build}

${BASE}.out.ps : | ${Build}
	ln -fs ${Build}/Paper.out.ps .

WileyNJD-AMA.bst :
	ln -fs ../AMA/AMA-stix/ama/WileyNJD-AMA.bst .

%.tex : %.fig | ${Build}
	fig2dev -L eepic $< > ${Build}/$@

%.ps : %.fig | ${Build}
	fig2dev -L ps $< > ${Build}/$@

%.pstex : %.fig | ${Build}
	fig2dev -L pstex $< > ${Build}/$@
	fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t

# Local Variables: #
# compile-command: "make" #
# End: #
