Remove SMOB tutorial; update manual.
[bpt/guile.git] / doc / ref / Makefile.am
CommitLineData
11ca8865
NJ
1## Process this file with Automake to create Makefile.in
2##
41d82ac9 3## Copyright (C) 1998, 2004, 2006, 2008, 2009, 2010,
6e4630e0 4## 2011, 2013, 2014 Free Software Foundation, Inc.
11ca8865
NJ
5##
6## This file is part of GUILE.
c8af48ba 7##
53befeb7
NJ
8## GUILE is free software; you can redistribute it and/or modify it
9## under the terms of the GNU Lesser General Public License as
10## published by the Free Software Foundation; either version 3, or
11ca8865 11## (at your option) any later version.
c8af48ba 12##
11ca8865
NJ
13## GUILE 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
53befeb7 16## GNU Lesser General Public License for more details.
c8af48ba 17##
53befeb7
NJ
18## You should have received a copy of the GNU Lesser General Public
19## License along with GUILE; see the file COPYING.LESSER. If not,
20## write to the Free Software Foundation, Inc., 51 Franklin Street,
21## Fifth Floor, Boston, MA 02110-1301 USA
11ca8865
NJ
22
23AUTOMAKE_OPTIONS = gnu
24
25info_TEXINFOS = guile.texi
26
237be238
MV
27guile_TEXINFOS = preface.texi \
28 intro.texi \
ff6182ed 29 tour.texi \
9cbbb400 30 libguile-parallel.texi \
237be238
MV
31 libguile-program.texi \
32 scheme-intro.texi \
07d83abe
MV
33 api-scm.texi \
34 api-snarf.texi \
35 api-smobs.texi \
6e4630e0 36 api-foreign-objects.texi \
237be238 37 scheme-ideas.texi \
07d83abe
MV
38 api-data.texi \
39 api-procedures.texi \
e4955559 40 api-macros.texi \
07d83abe
MV
41 api-utility.texi \
42 api-binding.texi \
43 api-control.texi \
44 api-io.texi \
726b8ba3 45 api-foreign.texi \
b215e5b2 46 api-regex.texi \
2115b8eb 47 api-lalr.texi \
e6709db6 48 api-languages.texi \
07d83abe
MV
49 api-evaluation.texi \
50 api-memory.texi \
51 api-modules.texi \
52 api-scheduling.texi \
53 api-options.texi \
fd936c91 54 api-i18n.texi \
07d83abe 55 api-debug.texi \
36b5e394 56 api-coverage.texi \
237be238
MV
57 scheme-reading.texi \
58 scheme-indices.texi \
59 slib.texi \
60 posix.texi \
8db7e094 61 web.texi \
237be238
MV
62 expect.texi \
63 scsh.texi \
98553883 64 curried.texi \
400a5dcb 65 sxml-match.texi \
07d83abe 66 scheme-scripts.texi \
07d83abe 67 api-overview.texi \
1435c7dc 68 api-deprecated.texi \
46f7666d 69 scheme-using.texi \
237be238 70 indices.texi \
237be238
MV
71 data-rep.texi \
72 repl-modules.texi \
73 srfi-modules.texi \
845cbcfe 74 r6rs.texi \
358663ca 75 match.texi \
237be238 76 misc-modules.texi \
07d83abe 77 api-compound.texi \
98518c96 78 libguile-autoconf.texi \
237be238
MV
79 autoconf-macros.texi \
80 tools.texi \
8680d53b
AW
81 history.texi \
82 vm.texi \
83 compiler.texi \
237be238
MV
84 fdl.texi \
85 libguile-concepts.texi \
6e4630e0 86 libguile-foreign-objects.texi \
237be238
MV
87 libguile-snarf.texi \
88 libguile-linking.texi \
89 libguile-extensions.texi \
07d83abe 90 api-init.texi \
eb12b401 91 mod-getopt-long.texi \
58c4a39d
AW
92 statprof.texi \
93 sxml.texi \
94 texinfo.texi \
eb12b401 95 goops.texi \
22b5f518 96 goops-tutorial.texi \
ea5c9ddc 97 guile-invoke.texi \
22b5f518 98 effective-version.texi
11ca8865 99
2a946b44
NJ
100ETAGS_ARGS = $(info_TEXINFOS) $(guile_TEXINFOS)
101
5e328915
NJ
102PICTURES = hierarchy.eps \
103 hierarchy.pdf \
104 hierarchy.png \
105 hierarchy.txt \
e163dd34
BG
106 gds.eps \
107 gds.pdf \
108 gds.txt \
109 scheme.eps \
110 scheme.pdf \
111 scheme.txt \
5e328915
NJ
112 mop.text
113
e163dd34
BG
114noinst_DATA = $(PICTURES)
115
5e328915 116EXTRA_DIST = ChangeLog-2008 $(PICTURES)
61db429e 117
a1f000d5
TTN
118# Automated snarfing
119
98518c96 120libguile-autoconf.texi: autoconf-macros.texi
0b6d8fdc 121autoconf-macros.texi: $(top_srcdir)/meta/guile.m4
83dce818
AW
122 GUILE_INSTALL_LOCALE=1 GUILE_AUTO_COMPILE=0 \
123 $(top_builddir)/meta/uninstalled-env guild \
d1529ddf 124 snarf-guile-m4-docs $(top_srcdir)/meta/guile.m4 \
a7286720 125 > $(srcdir)/$@
a1f000d5 126
a9ea4f90
LC
127# Build that file from here rather than at the user's site to avoid
128# triggering a rebuild of `guile.info'. Note that `GUILE-VERSION' is
129# among $(CONFIG_STATUS_DEPENDENCIES); thus, when it's updated, this
130# Makefile is rebuilt, and $(GUILE_EFFECTIVE_VERSION) is up-to-date.
131$(srcdir)/effective-version.texi: $(top_srcdir)/GUILE-VERSION
132 echo "@set EFFECTIVE-VERSION $(GUILE_EFFECTIVE_VERSION)" > $@
133
6ef7423a 134MAINTAINERCLEANFILES = autoconf-macros.texi
17dce950 135
863f1196
AW
136www-commit: html
137 cd guile.html; \
138 cvs -d :ext:cvs.sv.gnu.org:/web/guile \
139 import -m 'make www-commit in doc/ref' guile/docs/master/guile.html gnu \
140 $(shell date "+D%Y%m%d%H%M%S")