source: doc/user/Makefile@ 934d200

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum with_gc
Last change on this file since 934d200 was fb16d5c, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

put into canonical form to handle parallel build

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