Changes in doc/refrat/Makefile [e55ca05:20e409e]
- File:
-
- 1 edited
-
doc/refrat/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/refrat/Makefile
re55ca05 r20e409e 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. … … 43 43 dvips $< -o $@ 44 44 45 ${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \ 46 ../LaTeXmacros/common.tex ../LaTeXmacros/indexstyle ../bibliography/cfa.bib 45 ${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex ${basename ${DOCUMENT}}.bib 47 46 # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. 48 47 if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi … … 54 53 -${BibTeX} ${basename $@} 55 54 # Make index from *.aux entries and input index at end of document 56 makeindex -s ../LaTeXmacros/indexstyle ${basename $@}.idx55 makeindex -s indexstyle ${basename $@}.idx 57 56 ${LaTeX} ${basename $@}.tex 58 57 # Run again to get index title into table of contents
Note:
See TracChangeset
for help on using the changeset viewer.