Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/user/Makefile

    rd6a98f3 rfb16d5c  
    44Figures = figures
    55Macros = ../LaTeXmacros
    6 TeXLIB = .:${Macros}:${Build}:
     6TeXLIB = .:${Macros}:${Build}:../bibliography:
    77LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
    8 BibTeX = BIBINPUTS=../bibliography: && export BIBINPUTS && bibtex
     8BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
    99
    1010MAKEFLAGS = --no-print-directory --silent #
     
    5151# File Dependencies #
    5252
    53 build/version: ../../configure | ${Build}
    54         ../../configure --version | grep "cfa-cc configure" | grep -oEe "([0-9]+\.)+[0-9]+" > $@
    55 
    5653${DOCUMENT} : ${BASE}.ps
    5754        ps2pdf $<
     
    6057        dvips ${Build}/$< -o $@
    6158
    62 ${BASE}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \
    63                 ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib build/version | ${Build}
     59${BASE}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \
     60                ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib
    6461        # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
    6562        if [ ! -r ${basename $@}.ind ] ; then touch ${Build}/${basename $@}.ind ; fi
     
    7976## Define the default recipes.
    8077
    81 ${Build} :
     78${Build}:
    8279        mkdir -p ${Build}
    8380
    84 %.tex : %.fig | ${Build}
     81%.tex : %.fig ${Build}
    8582        fig2dev -L eepic $< > ${Build}/$@
    8683
    87 %.ps : %.fig | ${Build}
     84%.ps : %.fig ${Build}
    8885        fig2dev -L ps $< > ${Build}/$@
    8986
    90 %.pstex : %.fig | ${Build}
     87%.pstex : %.fig ${Build}
    9188        fig2dev -L pstex $< > ${Build}/$@
    9289        fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note: See TracChangeset for help on using the changeset viewer.