source: doc/user/Makefile @ 07bc165

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 07bc165 was 4096de0, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

write pointer/reference section, update LaTeX macros

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[038726d]1## Define the appropriate configuration variables.
2
[9724df0]3TeXLIB = .:../LaTeXmacros:../LaTeXmacros/listings:../LaTeXmacros/enumitem:../bibliography/:
[554a0db]4LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error
[e55ca05]5BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
[038726d]6
7## Define the text source files.
8
9SOURCES = ${addsuffix .tex, \
10user \
11}
12
13FIGURES = ${addsuffix .tex, \
[6b6597c]14Cdecl \
[4096de0]15pointer1 \
[038726d]16}
17
18PICTURES = ${addsuffix .pstex, \
[4096de0]19pointer2 \
[038726d]20}
21
22PROGRAMS = ${addsuffix .tex, \
23}
24
25GRAPHS = ${addsuffix .tex, \
26}
27
28## Define the documents that need to be made.
29
30DOCUMENT = user.pdf
31
32# Directives #
33
34all : ${DOCUMENT}
35
36clean :
37        rm -f *.bbl *.aux *.dvi *.idx *.ilg *.ind *.brf *.out *.log *.toc *.blg *.pstex_t *.cf \
38                ${FIGURES} ${PICTURES} ${PROGRAMS} ${GRAPHS} ${basename ${DOCUMENT}}.ps ${DOCUMENT}
39
40# File Dependencies #
41
42${DOCUMENT} : ${basename ${DOCUMENT}}.ps
43        ps2pdf $<
44
45${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi
46        dvips $< -o $@
47
[e55ca05]48${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \
49                ../LaTeXmacros/common.tex ../LaTeXmacros/indexstyle ../bibliography/cfa.bib
[038726d]50        # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
51        if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi
52        # Must have *.aux file containing citations for bibtex
53        if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
54        -${BibTeX} ${basename $@}
55        # Some citations reference others so run steps again to resolve these citations
56        ${LaTeX} ${basename $@}.tex
57        -${BibTeX} ${basename $@}
58        # Make index from *.aux entries and input index at end of document
[e55ca05]59        makeindex -s ../LaTeXmacros/indexstyle ${basename $@}.idx
[038726d]60        ${LaTeX} ${basename $@}.tex
61        # Run again to get index title into table of contents
62        ${LaTeX} ${basename $@}.tex
63
64predefined :
65        sed -f predefined.sed ${basename ${DOCUMENT}}.tex > ${basename $@}.cf
66
67## Define the default recipes.
68
69%.tex : %.fig
70        fig2dev -L eepic $< > $@
71
72%.ps : %.fig
73        fig2dev -L ps $< > $@
74
[4096de0]75%.pstex : %.fig
76        fig2dev -L pstex $< > $@
77        fig2dev -L pstex_t -p $@ $< > $@_t
78
[038726d]79# Local Variables: #
80# compile-command: "make" #
81# End: #
Note: See TracBrowser for help on using the repository browser.