Changes in doc/user/Makefile [6b6597c:038726d]
- File:
-
- 1 edited
-
doc/user/Makefile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/user/Makefile
r6b6597c r038726d 1 1 ## Define the appropriate configuration variables. 2 2 3 TeXLIB = .: ../bibliography/:../LaTeXmacros/:3 TeXLIB = .:: 4 4 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex 5 BibTeX = B IBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex5 BibTeX = BSTINPUTS=${TeXLIB} && export BSTINPUTS && bibtex 6 6 7 7 ## Define the text source files. … … 12 12 13 13 FIGURES = ${addsuffix .tex, \ 14 Cdecl \15 14 } 16 15 … … 44 43 dvips $< -o $@ 45 44 46 ${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \ 47 ../LaTeXmacros/common.tex ../LaTeXmacros/indexstyle ../bibliography/cfa.bib 45 ${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex ${basename ${DOCUMENT}}.bib /usr/local/bibliographies/pl.bib 48 46 # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. 49 47 if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi … … 55 53 -${BibTeX} ${basename $@} 56 54 # Make index from *.aux entries and input index at end of document 57 makeindex -s ../LaTeXmacros/indexstyle ${basename $@}.idx55 makeindex -s indexstyle ${basename $@}.idx 58 56 ${LaTeX} ${basename $@}.tex 59 57 # Run again to get index title into table of contents
Note:
See TracChangeset
for help on using the changeset viewer.