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