Changes in doc/user/Makefile [d6a98f3:fb16d5c]
- File:
-
- 1 edited
-
doc/user/Makefile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/user/Makefile
rd6a98f3 rfb16d5c 4 4 Figures = figures 5 5 Macros = ../LaTeXmacros 6 TeXLIB = .:${Macros}:${Build}: 6 TeXLIB = .:${Macros}:${Build}:../bibliography: 7 7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 8 BibTeX = BIBINPUTS= ../bibliography:&& export BIBINPUTS && bibtex8 BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex 9 9 10 10 MAKEFLAGS = --no-print-directory --silent # … … 51 51 # File Dependencies # 52 52 53 build/version: ../../configure | ${Build}54 ../../configure --version | grep "cfa-cc configure" | grep -oEe "([0-9]+\.)+[0-9]+" > $@55 56 53 ${DOCUMENT} : ${BASE}.ps 57 54 ps2pdf $< … … 60 57 dvips ${Build}/$< -o $@ 61 58 62 ${BASE}.dvi : Makefile ${ GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \63 ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib build/version | ${Build}59 ${BASE}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 60 ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib 64 61 # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. 65 62 if [ ! -r ${basename $@}.ind ] ; then touch ${Build}/${basename $@}.ind ; fi … … 79 76 ## Define the default recipes. 80 77 81 ${Build} :78 ${Build}: 82 79 mkdir -p ${Build} 83 80 84 %.tex : %.fig |${Build}81 %.tex : %.fig ${Build} 85 82 fig2dev -L eepic $< > ${Build}/$@ 86 83 87 %.ps : %.fig |${Build}84 %.ps : %.fig ${Build} 88 85 fig2dev -L ps $< > ${Build}/$@ 89 86 90 %.pstex : %.fig |${Build}87 %.pstex : %.fig ${Build} 91 88 fig2dev -L pstex $< > ${Build}/$@ 92 89 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note:
See TracChangeset
for help on using the changeset viewer.