-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile.am
58 lines (49 loc) · 2.45 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# This file is part of Oaklisp.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# The GNU GPL is available at http://www.gnu.org/licenses/gpl.html
# or from the Free Software Foundation, 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA
LATEX_SRCS = lang/lang.tex lim/lim.tex summary/OaklispSummary.tex
LATEX_PDFS = lang/lang.pdf lim/lim.pdf summary/OaklispSummary.pdf
pdf_DATA = $(LATEX_PDFS)
EXTRA_DIST = $(LATEX_SRCS)
.tex.pdf:
(cd $(dir $<) && $(LATEXMK) -pdf $(notdir $<)) \
|| cp ../prebuilt/doc/$@ $@
EXTRA_DIST += examples/bank-example.oak examples/change.oak \
examples/test-bank-example.oak examples/unit-testing.oak \
lang/control.tex lang/cover.tex lang/dynamic.tex lang/intro.tex \
lang/io.tex lang/locales.tex lang/methods.tex lang/misc.tex \
lang/numbers.tex lang/numhier.eps lang/seqhier.eps \
lang/sequences.tex lang/sides.tex lang/types.tex lang/user.tex \
lim/admin.tex lim/boot.tex lim/bytecode.tex lim/compiler.tex \
lim/cover.tex lim/dataform.tex lim/intro.tex lim/language.tex \
lim/methods.tex lim/oaklevel.tex lim/stack.tex mandefs.tex \
oakman.bib
CLEANFILES = $(LATEX_PDFS)
CLEANFILES += lang/control.aux lang/cover.aux lang/dynamic.aux \
lang/intro.aux lang/io.aux lang/lang.aux lang/lang.bbl lang/lang.blg \
lang/lang.fdb_latexmk lang/lang.fls lang/lang.idx lang/lang.ilg \
lang/lang.ind lang/lang.log lang/lang.toc lang/locales.aux \
lang/methods.aux lang/misc.aux lang/numbers.aux \
lang/numhier-eps-converted-to.pdf lang/seqhier-eps-converted-to.pdf \
lang/sequences.aux lang/sides.aux lang/types.aux lang/user.aux
CLEANFILES += lim/admin.aux lim/boot.aux lim/bytecode.aux \
lim/compiler.aux lim/cover.aux lim/dataform.aux lim/intro.aux \
lim/language.aux lim/lim.aux lim/lim.bbl lim/lim.blg \
lim/lim.fdb_latexmk lim/lim.fls lim/lim.idx lim/lim.ilg lim/lim.ind \
lim/lim.log lim/lim.toc lim/methods.aux lim/oaklevel.aux \
lim/stack.aux
CLEANFILES += summary/OaklispSummary.aux \
summary/OaklispSummary.fdb_latexmk summary/OaklispSummary.fls \
summary/OaklispSummary.log