Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/rob_schluntz/Makefile

    r728df66 r23c27039  
    1 TeXLIB = .:../LaTeXmacros:../bibliography/:
    2 LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error
     1Build = build
     2Macros = ../../LaTeXmacros
     3TeXLIB = .:${Macros}:${Build}:../../bibliography:
     4LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error -output-directory=${Build}
    35BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
     6
     7VPATH = ${Build}
    48
    59all : thesis.pdf
    610
    7 thesis.pdf : Makefile ../LaTeXmacros/common.tex cfa-format.tex thesis.tex intro.tex ctordtor.tex tuples.tex variadic.tex conclusions.tex
     11thesis.pdf : Makefile ${Build} ${Macros}/common.tex cfa-format.tex thesis.tex intro.tex ctordtor.tex tuples.tex variadic.tex conclusions.tex
    812        ${LaTeX} thesis
    9         ${BibTeX} thesis
     13        ${BibTeX} ${Build}/thesis
    1014        ${LaTeX} thesis
    1115        ${LaTeX} thesis
     16        cp -p ${Build}/thesis.pdf .
    1217        pdf2ps thesis.pdf thesis.ps
    1318
     19${Build}:
     20        mkdir -p ${Build}
     21
    1422clean :
    15         rm -f *.aux *.bbl *.blg *.lof *.log *.lot *.out *.toc
     23        @rm -frv ${Build}
    1624
    1725spotless : clean
Note: See TracChangeset for help on using the changeset viewer.