Changes in doc/papers/concurrency/Makefile [5ff188f:a43dd54]
- File:
-
- 1 edited
-
doc/papers/concurrency/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/concurrency/Makefile
r5ff188f ra43dd54 2 2 3 3 Build = build 4 Figures = figures5 4 Macros = ../../LaTeXmacros 6 TeXLIB = .:style:annex:${Macros}:${Build}: ../../bibliography:7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 5 TeXLIB = .:style:annex:${Macros}:${Build}:/usr/local/bibliographies: 6 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} -interaction=nonstopmode 8 7 BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex 9 8 10 9 MAKEFLAGS = --no-print-directory --silent # 11 VPATH = ${Figures}12 10 13 11 ## Define the text source files. … … 43 41 # Directives # 44 42 45 .PHONY : all clean # not file names43 .PHONY : all clean # not file names 46 44 47 45 all : ${DOCUMENT} … … 59 57 60 58 ${basename ${DOCUMENT}}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \ 61 ${Macros}/common.tex ${Macros}/indexstyle annex/local.bib ../../bibliography/pl.bib 62 # Must have *.aux file containing citations for bibtex 63 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi 64 -${BibTeX} ${Build}/${basename $@} 65 # Some citations reference others so run again to resolve these citations 59 ${Macros}/common.tex ${Macros}/indexstyle annex/local.bib /usr/local/bibliographies/pl.bib 60 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi # Must have *.aux file containing citations for bibtex 61 -${BibTeX} ${Build}/${basename $@} # Some citations reference others so run again to resolve these citations 66 62 ${LaTeX} ${basename $@}.tex 67 63 -${BibTeX} ${Build}/${basename $@} 68 # Run again to finish citations 69 ${LaTeX} ${basename $@}.tex 64 ${LaTeX} ${basename $@}.tex # Finish citations 70 65 71 66 ## Define the default recipes. 67 68 vpath %.tex ${subst .zzz,,${subst .zzz ,:,${SOURCES}}} # add prefix for source 69 vpath %.fig ${subst .zzz,,${subst .zzz ,:,${SOURCES}}} # add prefix for source 72 70 73 71 ${Build}: 74 72 mkdir -p ${Build} 75 73 76 %.tex : %.fig74 %.tex : figures/%.fig 77 75 fig2dev -L eepic $< > ${Build}/$@ 78 76 79 %.ps : %.fig77 %.ps : figures/%.fig 80 78 fig2dev -L ps $< > ${Build}/$@ 81 79 82 %.pstex : %.fig80 %.pstex : figures/%.fig 83 81 fig2dev -L pstex $< > ${Build}/$@ 84 82 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t 85 83 86 84 # Local Variables: # 85 # tab-width : 4 # 87 86 # compile-command: "make" # 88 87 # End: #
Note:
See TracChangeset
for help on using the changeset viewer.