Changeset 49eb6a2 for doc/papers/general/Makefile
- Timestamp:
- Mar 11, 2018, 11:51:09 PM (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:
- 53dece1
- Parents:
- 200b2b5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/general/Makefile
r200b2b5 r49eb6a2 3 3 Build = build 4 4 Figures = figures 5 Macros = ../../LaTeXmacros5 Macros = AMA/AMA-stix/ama 6 6 TeXLIB = .:${Macros}:${Build}:../../bibliography: 7 7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 8 8 BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex 9 9 10 MAKEFLAGS = --no-print-directory --silent #10 MAKEFLAGS = --no-print-directory # --silent 11 11 VPATH = ${Build} ${Figures} evaluation 12 12 … … 50 50 51 51 ${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi 52 dvips ${Build}/$< -o $@52 dvips -h ${Build}/Paper.out.ps -o $@ ${Build}/$< 53 53 54 54 ${basename ${DOCUMENT}}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 55 ${Macros}/common.tex ${Macros}/indexstyle../../bibliography/pl.bib55 ../../bibliography/pl.bib 56 56 # Must have *.aux file containing citations for bibtex 57 57 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 58 -${BibTeX} ${Build}/${basename $@}58 ${BibTeX} ${Build}/${basename $@} 59 59 # Some citations reference others so run again to resolve these citations 60 60 ${LaTeX} ${basename $@}.tex 61 -${BibTeX} ${Build}/${basename $@}61 ${BibTeX} ${Build}/${basename $@} 62 62 # Run again to finish citations 63 63 ${LaTeX} ${basename $@}.tex
Note: See TracChangeset
for help on using the changeset viewer.