Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/user/Makefile

    r038726d r6b6597c  
    11## Define the appropriate configuration variables.
    22
    3 TeXLIB = .::
     3TeXLIB = .:../bibliography/:../LaTeXmacros/:
    44LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex
    5 BibTeX = BSTINPUTS=${TeXLIB} && export BSTINPUTS && bibtex
     5BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
    66
    77## Define the text source files.
     
    1212
    1313FIGURES = ${addsuffix .tex, \
     14Cdecl \
    1415}
    1516
     
    4344        dvips $< -o $@
    4445
    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
    4648        # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
    4749        if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi
     
    5355        -${BibTeX} ${basename $@}
    5456        # Make index from *.aux entries and input index at end of document
    55         makeindex -s indexstyle ${basename $@}.idx
     57        makeindex -s ../LaTeXmacros/indexstyle ${basename $@}.idx
    5658        ${LaTeX} ${basename $@}.tex
    5759        # Run again to get index title into table of contents
Note: See TracChangeset for help on using the changeset viewer.