* doc/Makefile.am: Changed copyright.
[cacao.git] / doc / Makefile.am
1 ## doc/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005, 2006, 2008
4 ## CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5 ##
6 ## This file is part of CACAO.
7 ##
8 ## This program is free software; you can redistribute it and/or
9 ## modify it under the terms of the GNU General Public License as
10 ## published by the Free Software Foundation; either version 2, or (at
11 ## your option) any later version.
12 ##
13 ## This program is distributed in the hope that it will be useful, but
14 ## WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 ## General Public License for more details.
17 ##
18 ## You should have received a copy of the GNU General Public License
19 ## along with this program; if not, write to the Free Software
20 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 ## 02110-1301, USA.
22
23
24 SUBDIRS = handbook
25
26 dist_noinst_DATA = assertions.tex annotations.tex jsr.bib
27
28 EXTRA_DIST = inlining_stacktrace.txt native_threads.txt stack.txt
29
30 CLEANFILES = \
31         annotations.aux \
32         annotations.bbl \
33         annotations.blg \
34         annotations.dvi \
35         annotations.lof \
36         annotations.log \
37         annotations.lot \
38         annotations.toc \
39         annotations.idx \
40         annotations.out \
41         annotations.tex~ \
42         assertions.aux \
43         assertions.dvi \
44         assertions.log \
45         assertions.toc
46
47 annotations:
48         latex annotations
49         bibtex annotations
50         latex annotations
51         latex annotations
52
53 assertions:
54         latex assertions
55         latex assertions
56
57 ## Local variables:
58 ## mode: Makefile
59 ## indent-tabs-mode: t
60 ## c-basic-offset: 4
61 ## tab-width: 8
62 ## compile-command: "automake --add-missing"
63 ## End: