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