Prefer foreign objects over smobs in manual
[bpt/guile.git] / module / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2 ##
3 ## Copyright (C) 2009, 2010, 2011, 2012, 2013,
4 ## 2014 Free Software Foundation, Inc.
5 ##
6 ## This file is part of GUILE.
7 ##
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
11 ## (at your option) any later version.
12 ##
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
16 ## GNU Lesser General Public License for more details.
17 ##
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
22
23 include $(top_srcdir)/am/guilec
24
25 # We're at the root of the module hierarchy.
26 modpath =
27
28 # Build eval.go first.
29 $(GOBJECTS): ice-9/eval.go
30 CLEANFILES += ice-9/eval.go
31 nobase_mod_DATA += ice-9/eval.scm
32 nobase_ccache_DATA += ice-9/eval.go
33 EXTRA_DIST += ice-9/eval.scm
34 ETAGS_ARGS += ice-9/eval.scm
35
36 ice-9/boot-9.go: ice-9/boot-9.scm ice-9/quasisyntax.scm ice-9/r6rs-libraries.scm
37 ice-9/match.go: ice-9/match.scm ice-9/match.upstream.scm
38
39 # We can compile these in any order, but it's fastest if we compile
40 # psyntax and boot-9 first, then the compiler itself, then the rest of
41 # the code.
42 SOURCES = \
43 ice-9/psyntax-pp.scm \
44 ice-9/boot-9.scm \
45 ice-9/vlist.scm \
46 srfi/srfi-1.scm \
47 language/tree-il/peval.scm \
48 language/tree-il/cse.scm \
49 \
50 language/tree-il.scm \
51 language/glil.scm \
52 language/assembly.scm \
53 $(TREE_IL_LANG_SOURCES) \
54 $(GLIL_LANG_SOURCES) \
55 $(ASSEMBLY_LANG_SOURCES) \
56 $(BYTECODE_LANG_SOURCES) \
57 $(OBJCODE_LANG_SOURCES) \
58 $(VALUE_LANG_SOURCES) \
59 $(SCHEME_LANG_SOURCES) \
60 $(SYSTEM_BASE_SOURCES) \
61 \
62 $(ICE_9_SOURCES) \
63 $(SRFI_SOURCES) \
64 $(RNRS_SOURCES) \
65 $(OOP_SOURCES) \
66 $(SYSTEM_SOURCES) \
67 $(SCRIPTS_SOURCES) \
68 $(ECMASCRIPT_LANG_SOURCES) \
69 $(ELISP_LANG_SOURCES) \
70 $(BRAINFUCK_LANG_SOURCES) \
71 $(LIB_SOURCES) \
72 $(WEB_SOURCES)
73
74 ## test.scm is not currently installed.
75 EXTRA_DIST += \
76 ice-9/test.scm \
77 ice-9/compile-psyntax.scm \
78 ice-9/ChangeLog-2008
79 ETAGS_ARGS += \
80 ice-9/test.scm \
81 ice-9/compile-psyntax.scm \
82 ice-9/ChangeLog-2008
83
84 ice-9/psyntax-pp.scm.gen:
85 GUILE_INSTALL_LOCALE=1 GUILE_AUTO_COMPILE=0 \
86 $(top_builddir_absolute)/meta/guile -s $(srcdir)/ice-9/compile-psyntax.scm \
87 $(srcdir)/ice-9/psyntax.scm $(srcdir)/ice-9/psyntax-pp.scm
88
89 .PHONY: ice-9/psyntax-pp.scm.gen
90
91 # Keep this rule in sync with that in `am/guilec'.
92 ice-9/psyntax-pp.go: ice-9/psyntax.scm ice-9/psyntax-pp.scm
93 $(AM_V_GUILEC)GUILE_INSTALL_LOCALE=1 GUILE_AUTO_COMPILE=0 \
94 $(top_builddir)/meta/uninstalled-env \
95 guild compile --target="$(host)" $(GUILE_WARNINGS) \
96 -L "$(abs_srcdir)" -L "$(abs_builddir)" \
97 -L "$(abs_top_srcdir)/guile-readline" \
98 -o "ice-9/psyntax-pp.go" "$(srcdir)/ice-9/psyntax.scm"
99
100 SCHEME_LANG_SOURCES = \
101 language/scheme/spec.scm \
102 language/scheme/compile-tree-il.scm \
103 language/scheme/decompile-tree-il.scm
104
105 TREE_IL_LANG_SOURCES = \
106 language/tree-il/primitives.scm \
107 language/tree-il/effects.scm \
108 language/tree-il/fix-letrec.scm \
109 language/tree-il/optimize.scm \
110 language/tree-il/canonicalize.scm \
111 language/tree-il/analyze.scm \
112 language/tree-il/inline.scm \
113 language/tree-il/compile-glil.scm \
114 language/tree-il/debug.scm \
115 language/tree-il/spec.scm
116
117 GLIL_LANG_SOURCES = \
118 language/glil/spec.scm language/glil/compile-assembly.scm
119
120 ASSEMBLY_LANG_SOURCES = \
121 language/assembly/spec.scm \
122 language/assembly/compile-bytecode.scm \
123 language/assembly/decompile-bytecode.scm \
124 language/assembly/disassemble.scm
125
126 BYTECODE_LANG_SOURCES = \
127 language/bytecode/spec.scm
128
129 OBJCODE_LANG_SOURCES = \
130 language/objcode/spec.scm
131
132 VALUE_LANG_SOURCES = \
133 language/value/spec.scm
134
135 ECMASCRIPT_LANG_SOURCES = \
136 language/ecmascript/tokenize.scm \
137 language/ecmascript/parse.scm \
138 language/ecmascript/impl.scm \
139 language/ecmascript/base.scm \
140 language/ecmascript/function.scm \
141 language/ecmascript/array.scm \
142 language/ecmascript/compile-tree-il.scm \
143 language/ecmascript/spec.scm
144
145 ELISP_LANG_SOURCES = \
146 language/elisp/lexer.scm \
147 language/elisp/parser.scm \
148 language/elisp/bindings.scm \
149 language/elisp/compile-tree-il.scm \
150 language/elisp/runtime.scm \
151 language/elisp/runtime/function-slot.scm \
152 language/elisp/runtime/value-slot.scm \
153 language/elisp/runtime/macros.scm \
154 language/elisp/runtime/subrs.scm \
155 language/elisp/spec.scm
156
157 BRAINFUCK_LANG_SOURCES = \
158 language/brainfuck/parse.scm \
159 language/brainfuck/compile-scheme.scm \
160 language/brainfuck/compile-tree-il.scm \
161 language/brainfuck/spec.scm
162
163 SCRIPTS_SOURCES = \
164 scripts/compile.scm \
165 scripts/disassemble.scm \
166 scripts/display-commentary.scm \
167 scripts/doc-snarf.scm \
168 scripts/frisk.scm \
169 scripts/generate-autoload.scm \
170 scripts/help.scm \
171 scripts/lint.scm \
172 scripts/list.scm \
173 scripts/punify.scm \
174 scripts/read-scheme-source.scm \
175 scripts/read-text-outline.scm \
176 scripts/use2dot.scm \
177 scripts/snarf-check-and-output-texi.scm \
178 scripts/summarize-guile-TODO.scm \
179 scripts/api-diff.scm \
180 scripts/read-rfc822.scm \
181 scripts/snarf-guile-m4-docs.scm
182
183 SYSTEM_BASE_SOURCES = \
184 system/base/pmatch.scm \
185 system/base/syntax.scm \
186 system/base/compile.scm \
187 system/base/language.scm \
188 system/base/lalr.scm \
189 system/base/message.scm \
190 system/base/target.scm \
191 system/base/types.scm \
192 system/base/ck.scm
193
194 ICE_9_SOURCES = \
195 ice-9/r4rs.scm \
196 ice-9/r5rs.scm \
197 ice-9/deprecated.scm \
198 ice-9/and-let-star.scm \
199 ice-9/binary-ports.scm \
200 ice-9/calling.scm \
201 ice-9/command-line.scm \
202 ice-9/common-list.scm \
203 ice-9/control.scm \
204 ice-9/curried-definitions.scm \
205 ice-9/debug.scm \
206 ice-9/documentation.scm \
207 ice-9/eval-string.scm \
208 ice-9/expect.scm \
209 ice-9/format.scm \
210 ice-9/futures.scm \
211 ice-9/getopt-long.scm \
212 ice-9/hash-table.scm \
213 ice-9/hcons.scm \
214 ice-9/i18n.scm \
215 ice-9/iconv.scm \
216 ice-9/lineio.scm \
217 ice-9/ls.scm \
218 ice-9/mapping.scm \
219 ice-9/match.scm \
220 ice-9/networking.scm \
221 ice-9/null.scm \
222 ice-9/occam-channel.scm \
223 ice-9/optargs.scm \
224 ice-9/poe.scm \
225 ice-9/poll.scm \
226 ice-9/posix.scm \
227 ice-9/q.scm \
228 ice-9/rdelim.scm \
229 ice-9/receive.scm \
230 ice-9/regex.scm \
231 ice-9/runq.scm \
232 ice-9/rw.scm \
233 ice-9/safe-r5rs.scm \
234 ice-9/safe.scm \
235 ice-9/save-stack.scm \
236 ice-9/scm-style-repl.scm \
237 ice-9/session.scm \
238 ice-9/slib.scm \
239 ice-9/stack-catch.scm \
240 ice-9/streams.scm \
241 ice-9/string-fun.scm \
242 ice-9/syncase.scm \
243 ice-9/threads.scm \
244 ice-9/top-repl.scm \
245 ice-9/buffered-input.scm \
246 ice-9/time.scm \
247 ice-9/history.scm \
248 ice-9/channel.scm \
249 ice-9/pretty-print.scm \
250 ice-9/ftw.scm \
251 ice-9/gap-buffer.scm \
252 ice-9/weak-vector.scm \
253 ice-9/list.scm \
254 ice-9/serialize.scm \
255 ice-9/local-eval.scm
256
257 if BUILD_ICE_9_POPEN
258
259 # This functionality is missing on systems without `fork'---i.e., Windows.
260 ICE_9_SOURCES += ice-9/popen.scm
261
262 # These modules rely on (ice-9 popen).
263 SCRIPTS_SOURCES += \
264 scripts/autofrisk.scm \
265 scripts/scan-api.scm
266
267 endif BUILD_ICE_9_POPEN
268
269 srfi/srfi-64.go: srfi/srfi-64.scm srfi/srfi-64/testing.scm
270
271 SRFI_SOURCES = \
272 srfi/srfi-2.scm \
273 srfi/srfi-4.scm \
274 srfi/srfi-4/gnu.scm \
275 srfi/srfi-6.scm \
276 srfi/srfi-8.scm \
277 srfi/srfi-9.scm \
278 srfi/srfi-9/gnu.scm \
279 srfi/srfi-10.scm \
280 srfi/srfi-11.scm \
281 srfi/srfi-13.scm \
282 srfi/srfi-14.scm \
283 srfi/srfi-16.scm \
284 srfi/srfi-17.scm \
285 srfi/srfi-18.scm \
286 srfi/srfi-19.scm \
287 srfi/srfi-26.scm \
288 srfi/srfi-27.scm \
289 srfi/srfi-31.scm \
290 srfi/srfi-34.scm \
291 srfi/srfi-35.scm \
292 srfi/srfi-37.scm \
293 srfi/srfi-38.scm \
294 srfi/srfi-41.scm \
295 srfi/srfi-42.scm \
296 srfi/srfi-43.scm \
297 srfi/srfi-39.scm \
298 srfi/srfi-45.scm \
299 srfi/srfi-60.scm \
300 srfi/srfi-64.scm \
301 srfi/srfi-67.scm \
302 srfi/srfi-69.scm \
303 srfi/srfi-88.scm \
304 srfi/srfi-98.scm \
305 srfi/srfi-111.scm
306
307 RNRS_SOURCES = \
308 rnrs/base.scm \
309 rnrs/conditions.scm \
310 rnrs/control.scm \
311 rnrs/enums.scm \
312 rnrs/eval.scm \
313 rnrs/exceptions.scm \
314 rnrs/files.scm \
315 rnrs/hashtables.scm \
316 rnrs/lists.scm \
317 rnrs/mutable-pairs.scm \
318 rnrs/mutable-strings.scm \
319 rnrs/programs.scm \
320 rnrs/r5rs.scm \
321 rnrs/sorting.scm \
322 rnrs/syntax-case.scm \
323 rnrs/unicode.scm \
324 rnrs/arithmetic/bitwise.scm \
325 rnrs/arithmetic/fixnums.scm \
326 rnrs/arithmetic/flonums.scm \
327 rnrs/bytevectors.scm \
328 rnrs/io/simple.scm \
329 rnrs/io/ports.scm \
330 rnrs/records/inspection.scm \
331 rnrs/records/procedural.scm \
332 rnrs/records/syntactic.scm \
333 rnrs.scm
334
335 EXTRA_DIST += scripts/ChangeLog-2008
336 EXTRA_DIST += scripts/README
337
338 OOP_SOURCES = \
339 oop/goops.scm \
340 oop/goops/active-slot.scm \
341 oop/goops/compile.scm \
342 oop/goops/composite-slot.scm \
343 oop/goops/describe.scm \
344 oop/goops/dispatch.scm \
345 oop/goops/internal.scm \
346 oop/goops/save.scm \
347 oop/goops/stklos.scm \
348 oop/goops/util.scm \
349 oop/goops/accessors.scm \
350 oop/goops/simple.scm
351
352 SYSTEM_SOURCES = \
353 system/vm/inspect.scm \
354 system/vm/coverage.scm \
355 system/vm/frame.scm \
356 system/vm/instruction.scm \
357 system/vm/objcode.scm \
358 system/vm/program.scm \
359 system/vm/trace.scm \
360 system/vm/traps.scm \
361 system/vm/trap-state.scm \
362 system/vm/vm.scm \
363 system/foreign.scm \
364 system/foreign-object.scm \
365 system/xref.scm \
366 system/repl/debug.scm \
367 system/repl/error-handling.scm \
368 system/repl/common.scm \
369 system/repl/command.scm \
370 system/repl/repl.scm \
371 system/repl/server.scm \
372 system/repl/coop-server.scm
373
374 LIB_SOURCES = \
375 statprof.scm \
376 sxml/apply-templates.scm \
377 sxml/fold.scm \
378 sxml/match.scm \
379 sxml/simple.scm \
380 sxml/ssax/input-parse.scm \
381 sxml/ssax.scm \
382 sxml/transform.scm \
383 sxml/xpath.scm \
384 texinfo.scm \
385 texinfo/docbook.scm \
386 texinfo/html.scm \
387 texinfo/indexing.scm \
388 texinfo/string-utils.scm \
389 texinfo/plain-text.scm \
390 texinfo/reflection.scm \
391 texinfo/serialize.scm
392
393 WEB_SOURCES = \
394 web/client.scm \
395 web/http.scm \
396 web/request.scm \
397 web/response.scm \
398 web/server.scm \
399 web/server/http.scm \
400 web/uri.scm
401
402 EXTRA_DIST += oop/ChangeLog-2008
403
404 NOCOMP_SOURCES = \
405 ice-9/match.upstream.scm \
406 ice-9/psyntax.scm \
407 ice-9/r6rs-libraries.scm \
408 ice-9/quasisyntax.scm \
409 srfi/srfi-42/ec.scm \
410 srfi/srfi-64/testing.scm \
411 srfi/srfi-67/compare.scm \
412 system/base/lalr.upstream.scm \
413 system/repl/describe.scm \
414 sxml/sxml-match.ss \
415 sxml/upstream/SSAX.scm \
416 sxml/upstream/SXML-tree-trans.scm \
417 sxml/upstream/SXPath-old.scm \
418 sxml/upstream/assert.scm \
419 sxml/upstream/input-parse.scm