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