Changeset b067d9b for doc/user/Makefile
- Timestamp:
- Oct 29, 2019, 4:01:24 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 773db65, 9421f3d8
- Parents:
- 7951100 (diff), 8364209 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
doc/user/Makefile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/user/Makefile
r7951100 rb067d9b 4 4 Figures = figures 5 5 Macros = ../LaTeXmacros 6 TeXLIB = .:${Macros}:${Build}: ../bibliography:6 TeXLIB = .:${Macros}:${Build}: 7 7 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 8 BibTeX = BIBINPUTS= ${TeXLIB}&& export BIBINPUTS && bibtex8 BibTeX = BIBINPUTS=../bibliography: && 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 53 56 ${DOCUMENT} : ${BASE}.ps 54 57 ps2pdf $< … … 57 60 dvips ${Build}/$< -o $@ 58 61 59 ${BASE}.dvi : Makefile ${ Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \60 ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib 62 ${BASE}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 63 ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib build/version | ${Build} 61 64 # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. 62 65 if [ ! -r ${basename $@}.ind ] ; then touch ${Build}/${basename $@}.ind ; fi … … 76 79 ## Define the default recipes. 77 80 78 ${Build} :81 ${Build} : 79 82 mkdir -p ${Build} 80 83 81 %.tex : %.fig ${Build}84 %.tex : %.fig | ${Build} 82 85 fig2dev -L eepic $< > ${Build}/$@ 83 86 84 %.ps : %.fig ${Build}87 %.ps : %.fig | ${Build} 85 88 fig2dev -L ps $< > ${Build}/$@ 86 89 87 %.pstex : %.fig ${Build}90 %.pstex : %.fig | ${Build} 88 91 fig2dev -L pstex $< > ${Build}/$@ 89 92 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note:
See TracChangeset
for help on using the changeset viewer.