1 | ## Define the configuration variables.
|
---|
2 |
|
---|
3 | Build = build
|
---|
4 | Figures = figures
|
---|
5 | Macros = ../LaTeXmacros
|
---|
6 | TeXLIB = .:${Macros}:${Build}:../bibliography:
|
---|
7 | LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
|
---|
8 | BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
|
---|
9 |
|
---|
10 | MAKEFLAGS = --no-print-directory --silent #
|
---|
11 | VPATH = ${Build} ${Figures}
|
---|
12 |
|
---|
13 | ## Define the text source files.
|
---|
14 |
|
---|
15 | SOURCES = ${addsuffix .tex, \
|
---|
16 | refrat \
|
---|
17 | keywords \
|
---|
18 | operidents \
|
---|
19 | }
|
---|
20 |
|
---|
21 | FIGURES = ${addsuffix .tex, \
|
---|
22 | }
|
---|
23 |
|
---|
24 | PICTURES = ${addsuffix .pstex, \
|
---|
25 | }
|
---|
26 |
|
---|
27 | PROGRAMS = ${addsuffix .tex, \
|
---|
28 | }
|
---|
29 |
|
---|
30 | GRAPHS = ${addsuffix .tex, \
|
---|
31 | }
|
---|
32 |
|
---|
33 | ## Define the documents that need to be made.
|
---|
34 |
|
---|
35 | DOCUMENT = refrat.pdf
|
---|
36 |
|
---|
37 | # Directives #
|
---|
38 |
|
---|
39 | .PHONY : all clean # not file names
|
---|
40 |
|
---|
41 | all : ${DOCUMENT}
|
---|
42 |
|
---|
43 | clean :
|
---|
44 | @rm -frv ${DOCUMENT} ${basename ${DOCUMENT}}.ps ${Build}
|
---|
45 |
|
---|
46 | # File Dependencies #
|
---|
47 |
|
---|
48 | ${DOCUMENT} : ${basename ${DOCUMENT}}.ps
|
---|
49 | ps2pdf $<
|
---|
50 |
|
---|
51 | ${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi
|
---|
52 | dvips ${Build}/$< -o $@
|
---|
53 |
|
---|
54 | ${basename ${DOCUMENT}}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \
|
---|
55 | ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib
|
---|
56 | # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
|
---|
57 | if [ ! -r ${basename $@}.ind ] ; then touch ${Build}/${basename $@}.ind ; fi
|
---|
58 | # Must have *.aux file containing citations for bibtex
|
---|
59 | if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
|
---|
60 | -${BibTeX} ${Build}/${basename $@}
|
---|
61 | # Some citations reference others so run again to resolve these citations
|
---|
62 | ${LaTeX} ${basename $@}.tex
|
---|
63 | -${BibTeX} ${Build}/${basename $@}
|
---|
64 | # Make index from *.aux entries and input index at end of document
|
---|
65 | makeindex -s ${Macros}/indexstyle ${Build}/${basename $@}.idx
|
---|
66 | # Run again to finish citations
|
---|
67 | ${LaTeX} ${basename $@}.tex
|
---|
68 | # Run again to get index title into table of contents
|
---|
69 | ${LaTeX} ${basename $@}.tex
|
---|
70 |
|
---|
71 | predefined :
|
---|
72 | sed -f predefined.sed ${basename ${DOCUMENT}}.tex > ${basename $@}.cf
|
---|
73 |
|
---|
74 | ## Define the default recipes.
|
---|
75 |
|
---|
76 | ${Build}:
|
---|
77 | mkdir -p ${Build}
|
---|
78 |
|
---|
79 | %.tex : %.fig
|
---|
80 | fig2dev -L eepic $< > ${Build}/$@
|
---|
81 |
|
---|
82 | %.ps : %.fig
|
---|
83 | fig2dev -L ps $< > ${Build}/$@
|
---|
84 |
|
---|
85 | %.pstex : %.fig
|
---|
86 | fig2dev -L pstex $< > ${Build}/$@
|
---|
87 | fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
|
---|
88 |
|
---|
89 | # Local Variables: #
|
---|
90 | # compile-command: "make" #
|
---|
91 | # End: #
|
---|