Changes in doc/papers/general/Makefile [3fd3bda:a722c7a]
- File:
-
- 1 edited
-
doc/papers/general/Makefile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/general/Makefile
r3fd3bda ra722c7a 3 3 Build = build 4 4 Figures = figures 5 Macros = AMA/AMA-stix/ama5 Macros = ../../LaTeXmacros 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 # --silent10 MAKEFLAGS = --no-print-directory --silent # 11 11 VPATH = ${Build} ${Figures} evaluation 12 12 … … 34 34 35 35 DOCUMENT = Paper.pdf 36 BASE = ${basename ${DOCUMENT}}37 36 38 37 # Directives # … … 43 42 44 43 clean : 45 @rm -frv ${DOCUMENT} ${ BASE}.ps WileyNJD-AMA.bst ${BASE}.out.ps ${Build}44 @rm -frv ${DOCUMENT} ${basename ${DOCUMENT}}.ps ${Build} 46 45 47 46 # File Dependencies # 48 47 49 ${DOCUMENT} : ${ BASE}.ps48 ${DOCUMENT} : ${basename ${DOCUMENT}}.ps 50 49 ps2pdf $< 51 50 52 ${ BASE}.ps : ${BASE}.dvi51 ${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi 53 52 dvips ${Build}/$< -o $@ 54 53 55 ${ BASE}.dvi : Makefile ${Build} ${BASE}.out.ps WileyNJD-AMA.bst${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \56 ../../bibliography/pl.bib54 ${basename ${DOCUMENT}}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 55 ${Macros}/common.tex ${Macros}/indexstyle ../../bibliography/pl.bib 57 56 # Must have *.aux file containing citations for bibtex 58 57 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 59 ${BibTeX} ${Build}/${basename $@}58 -${BibTeX} ${Build}/${basename $@} 60 59 # Some citations reference others so run again to resolve these citations 61 60 ${LaTeX} ${basename $@}.tex 62 ${BibTeX} ${Build}/${basename $@}61 -${BibTeX} ${Build}/${basename $@} 63 62 # Run again to finish citations 64 63 ${LaTeX} ${basename $@}.tex … … 68 67 ${Build}: 69 68 mkdir -p ${Build} 70 71 ${BASE}.out.ps:72 ln -fs build/Paper.out.ps .73 74 WileyNJD-AMA.bst:75 ln -fs AMA/AMA-stix/ama/WileyNJD-AMA.bst .76 69 77 70 ${GRAPHS} : timing.gp timing.dat
Note:
See TracChangeset
for help on using the changeset viewer.