Changeset 23c27039 for doc/theses/rob_schluntz/Makefile
- Timestamp:
- Feb 1, 2018, 10:03:35 AM (7 years ago)
- 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, resolv-new, with_gc
- Children:
- 295e5071
- Parents:
- 281806b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/rob_schluntz/Makefile
r281806b6 r23c27039 1 TeXLIB = .:../LaTeXmacros:../bibliography/: 2 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error 1 Build = build 2 Macros = ../../LaTeXmacros 3 TeXLIB = .:${Macros}:${Build}:../../bibliography: 4 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error -output-directory=${Build} 3 5 BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex 6 7 VPATH = ${Build} 4 8 5 9 all : thesis.pdf 6 10 7 thesis.pdf : Makefile ../LaTeXmacros/common.tex cfa-format.tex thesis.tex intro.tex ctordtor.tex tuples.tex variadic.tex conclusions.tex11 thesis.pdf : Makefile ${Build} ${Macros}/common.tex cfa-format.tex thesis.tex intro.tex ctordtor.tex tuples.tex variadic.tex conclusions.tex 8 12 ${LaTeX} thesis 9 ${BibTeX} thesis13 ${BibTeX} ${Build}/thesis 10 14 ${LaTeX} thesis 11 15 ${LaTeX} thesis 16 cp -p ${Build}/thesis.pdf . 12 17 pdf2ps thesis.pdf thesis.ps 13 18 19 ${Build}: 20 mkdir -p ${Build} 21 14 22 clean : 15 rm -f *.aux *.bbl *.blg *.lof *.log *.lot *.out *.toc23 @rm -frv ${Build} 16 24 17 25 spotless : clean
Note: See TracChangeset
for help on using the changeset viewer.