source: doc/theses/aaron_moss_PhD/phd/Makefile @ 21cf101

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 21cf101 was b4fd981, checked in by Aaron Moss <a3moss@…>, 6 years ago

thesis: port figures from presentation into union-find chapter

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[9fce933a]1BUILD = build
2BIBDIR = ../../../bibliography
[6cb935d]3EVALDIR = evaluation
[3deb316]4FIGDIR = figures
[9fce933a]5TEXLIB = .:${BUILD}:${BIBDIR}:
6
[a72b240]7# LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction=nonstopmode -halt-on-error -output-directory=${BUILD}
8LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${BUILD}
[9fce933a]9BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex
[2a9d12d]10
[3deb316]11VPATH = ${EVALDIR} ${FIGDIR}
[6cb935d]12
[2a9d12d]13BASE = thesis
14DOCUMENT = ${BASE}.pdf
[9fce933a]15BIBFILE = ${BIBDIR}/pl.bib
[2a9d12d]16
[62e782e]17SOURCES = ${addsuffix .tex, \
18thesis \
[0cf9ffd]19macros \
20cfa-macros \
[62e782e]21frontpgs \
22introduction \
23background \
[48b7085e]24generic-types \
[62e782e]25type-environment \
26resolution-heuristics \
27conclusion \
28}
29
[3deb316]30FIGURES = ${addsuffix .eps, \
31resolution-dag \
[b4fd981]32union-find-with-classes \
33persistent-union-find \
[3deb316]34}
35
[6cb935d]36GRAPHS = ${addsuffix .tex, \
37generic-timing \
38}
39
[62e782e]40.PHONY : all rebuild-refs clean wc
[2a9d12d]41
42all : ${DOCUMENT}
43
44clean : 
[9fce933a]45        @rm -fv ${BUILD}/*
[2a9d12d]46
[62e782e]47wc :
48        wc ${SOURCES}
49
[a72b240]50${DOCUMENT} : ${BASE}.ps
51        ps2pdf ${BUILD}/$<
52
53${BASE}.ps : ${BASE}.dvi
54        dvips ${BUILD}/$< -o ${BUILD}/$@
[2a9d12d]55
[3deb316]56${BASE}.dvi : Makefile ${SOURCES} ${GRAPHS} ${FIGURES} ${BIBFILE} ${BUILD}
[2a9d12d]57        ${LATEX} ${BASE}
[9fce933a]58        ${BIBTEX} ${BUILD}/${BASE}
[2a9d12d]59        ${LATEX} ${BASE}
60        ${LATEX} ${BASE}
[9fce933a]61
[6cb935d]62${GRAPHS} : generic-timing.gp generic-timing.dat ${BUILD}
63        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/generic-timing.gp
[a72b240]64
[9fce933a]65${BUILD}: 
66        mkdir -p ${BUILD}
Note: See TracBrowser for help on using the repository browser.