Futures: Avoid creating the worker pool more than once.
[bpt/guile.git] / module / Makefile.am
CommitLineData
3bb299b3
LC
1## Process this file with automake to produce Makefile.in.
2##
d062a8c1 3## Copyright (C) 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
3bb299b3
LC
4##
5## This file is part of GUILE.
6##
53befeb7
NJ
7## GUILE is free software; you can redistribute it and/or modify it
8## under the terms of the GNU Lesser General Public License as
9## published by the Free Software Foundation; either version 3, or
3bb299b3
LC
10## (at your option) any later version.
11##
12## GUILE is distributed in the hope that it will be useful, but
13## WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
53befeb7 15## GNU Lesser General Public License for more details.
3bb299b3 16##
53befeb7
NJ
17## You should have received a copy of the GNU Lesser General Public
18## License along with GUILE; see the file COPYING.LESSER. If not,
19## write to the Free Software Foundation, Inc., 51 Franklin Street,
20## Fifth Floor, Boston, MA 02110-1301 USA
3bb299b3 21
6d66647d
AW
22include $(top_srcdir)/am/guilec
23
3bb299b3
LC
24# We're at the root of the module hierarchy.
25modpath =
26
c439c756
AW
27# Build eval.go first.
28$(GOBJECTS): ice-9/eval.go
29CLEANFILES += ice-9/eval.go
5161a3c0
AW
30nobase_mod_DATA += ice-9/eval.scm
31nobase_ccache_DATA += ice-9/eval.go
32EXTRA_DIST += ice-9/eval.scm
4fb23c17 33ETAGS_ARGS += ice-9/eval.scm
5161a3c0 34
8210c853
MW
35ice-9/boot-9.go: ice-9/boot-9.scm ice-9/quasisyntax.scm ice-9/r6rs-libraries.scm
36
5f161164
AW
37# We can compile these in any order, but it's fastest if we compile
38# psyntax and boot-9 first, then the compiler itself, then the rest of
39# the code.
40SOURCES = \
41 ice-9/psyntax-pp.scm \
42 ice-9/boot-9.scm \
6ccc6678
AW
43 ice-9/vlist.scm \
44 srfi/srfi-1.scm \
45 language/tree-il/peval.scm \
46 language/tree-il/cse.scm \
5f161164
AW
47 \
48 language/tree-il.scm \
49 language/glil.scm \
50 language/assembly.scm \
51 $(TREE_IL_LANG_SOURCES) \
52 $(GLIL_LANG_SOURCES) \
53 $(ASSEMBLY_LANG_SOURCES) \
54 $(BYTECODE_LANG_SOURCES) \
55 $(OBJCODE_LANG_SOURCES) \
56 $(VALUE_LANG_SOURCES) \
57 $(SCHEME_LANG_SOURCES) \
58 $(SYSTEM_BASE_SOURCES) \
59 \
60 $(ICE_9_SOURCES) \
61 $(SRFI_SOURCES) \
62 $(RNRS_SOURCES) \
63 $(OOP_SOURCES) \
64 $(SYSTEM_SOURCES) \
65 $(SCRIPTS_SOURCES) \
66 $(ECMASCRIPT_LANG_SOURCES) \
e4257331 67 $(ELISP_LANG_SOURCES) \
47f3ce52 68 $(BRAINFUCK_LANG_SOURCES) \
73124c6c
AW
69 $(LIB_SOURCES) \
70 $(WEB_SOURCES)
3bb299b3 71
58df2e43 72## test.scm is not currently installed.
cb65f76c
AR
73EXTRA_DIST += \
74 ice-9/test.scm \
75 ice-9/compile-psyntax.scm \
cb65f76c 76 ice-9/ChangeLog-2008
4fb23c17
NJ
77ETAGS_ARGS += \
78 ice-9/test.scm \
79 ice-9/compile-psyntax.scm \
80 ice-9/ChangeLog-2008
58df2e43 81
dbb39d9c 82ice-9/psyntax-pp.scm.gen:
6b8bc6f8 83 $(top_builddir_absolute)/meta/guile --no-auto-compile -s $(srcdir)/ice-9/compile-psyntax.scm \
58df2e43 84 $(srcdir)/ice-9/psyntax.scm $(srcdir)/ice-9/psyntax-pp.scm
90812095 85
736aff00
LC
86.PHONY: ice-9/psyntax-pp.scm.gen
87
f7012874 88# Keep this rule in sync with that in `am/guilec'.
c439c756 89ice-9/psyntax-pp.go: ice-9/psyntax.scm ice-9/psyntax-pp.scm
f7012874 90 $(AM_V_GUILEC)GUILE_AUTO_COMPILE=0 \
a0a8dd62
LC
91 $(top_builddir)/meta/uninstalled-env \
92 guild compile --target="$(host)" $(GUILE_WARNINGS) \
f7012874
LC
93 -L "$(abs_srcdir)" -L "$(abs_builddir)" \
94 -L "$(abs_top_srcdir)/guile-readline" \
a0a8dd62 95 -o "ice-9/psyntax-pp.go" "$(srcdir)/ice-9/psyntax.scm"
58df2e43 96
3bb299b3 97SCHEME_LANG_SOURCES = \
b81d329e
AW
98 language/scheme/spec.scm \
99 language/scheme/compile-tree-il.scm \
27c8177f 100 language/scheme/decompile-tree-il.scm
3bb299b3 101
9efc833d 102TREE_IL_LANG_SOURCES = \
55ae815b 103 language/tree-il/primitives.scm \
da9b2b71 104 language/tree-il/effects.scm \
c21c89b1 105 language/tree-il/fix-letrec.scm \
b275fb26
AW
106 language/tree-il/optimize.scm \
107 language/tree-il/canonicalize.scm \
cf10678f 108 language/tree-il/analyze.scm \
b275fb26 109 language/tree-il/inline.scm \
cf10678f 110 language/tree-il/compile-glil.scm \
6d2d6897 111 language/tree-il/debug.scm \
cf10678f 112 language/tree-il/spec.scm
811d10f5 113
3bb299b3 114GLIL_LANG_SOURCES = \
860f569a
AW
115 language/glil/spec.scm language/glil/compile-assembly.scm \
116 language/glil/decompile-assembly.scm
3bb299b3
LC
117
118ASSEMBLY_LANG_SOURCES = \
119 language/assembly/spec.scm \
120 language/assembly/compile-bytecode.scm \
121 language/assembly/decompile-bytecode.scm \
122 language/assembly/disassemble.scm
123
124BYTECODE_LANG_SOURCES = \
125 language/bytecode/spec.scm
126
127OBJCODE_LANG_SOURCES = \
128 language/objcode/spec.scm
129
130VALUE_LANG_SOURCES = \
131 language/value/spec.scm
132
133ECMASCRIPT_LANG_SOURCES = \
3bb299b3
LC
134 language/ecmascript/tokenize.scm \
135 language/ecmascript/parse.scm \
3bb299b3
LC
136 language/ecmascript/impl.scm \
137 language/ecmascript/base.scm \
138 language/ecmascript/function.scm \
139 language/ecmascript/array.scm \
eb1482ac 140 language/ecmascript/compile-tree-il.scm \
8f9b9683 141 language/ecmascript/spec.scm
3bb299b3 142
e4257331
AW
143ELISP_LANG_SOURCES = \
144 language/elisp/lexer.scm \
145 language/elisp/parser.scm \
146 language/elisp/bindings.scm \
147 language/elisp/compile-tree-il.scm \
148 language/elisp/runtime.scm \
149 language/elisp/runtime/function-slot.scm \
e4257331 150 language/elisp/runtime/value-slot.scm \
8295b7c4
BT
151 language/elisp/runtime/macros.scm \
152 language/elisp/runtime/subrs.scm \
e4257331
AW
153 language/elisp/spec.scm
154
6370a6ad 155BRAINFUCK_LANG_SOURCES = \
6370a6ad 156 language/brainfuck/parse.scm \
5c27902e
AW
157 language/brainfuck/compile-scheme.scm \
158 language/brainfuck/compile-tree-il.scm \
159 language/brainfuck/spec.scm
6370a6ad 160
6d66647d 161SCRIPTS_SOURCES = \
6d66647d
AW
162 scripts/autofrisk.scm \
163 scripts/compile.scm \
164 scripts/disassemble.scm \
165 scripts/display-commentary.scm \
166 scripts/doc-snarf.scm \
167 scripts/frisk.scm \
168 scripts/generate-autoload.scm \
f4a76a31 169 scripts/help.scm \
6d66647d 170 scripts/lint.scm \
9228f9eb 171 scripts/list.scm \
6d66647d
AW
172 scripts/punify.scm \
173 scripts/read-scheme-source.scm \
174 scripts/read-text-outline.scm \
175 scripts/use2dot.scm \
176 scripts/snarf-check-and-output-texi.scm \
177 scripts/summarize-guile-TODO.scm \
178 scripts/scan-api.scm \
179 scripts/api-diff.scm \
180 scripts/read-rfc822.scm \
181 scripts/snarf-guile-m4-docs.scm
182
1b101522 183SYSTEM_BASE_SOURCES = \
5f161164
AW
184 system/base/pmatch.scm \
185 system/base/syntax.scm \
186 system/base/compile.scm \
187 system/base/language.scm \
1b101522 188 system/base/lalr.scm \
42090217
AW
189 system/base/message.scm \
190 system/base/target.scm
5f161164 191
58df2e43 192ICE_9_SOURCES = \
58df2e43
AW
193 ice-9/r4rs.scm \
194 ice-9/r5rs.scm \
2a8a127b 195 ice-9/deprecated.scm \
58df2e43 196 ice-9/and-let-star.scm \
dd0d987f 197 ice-9/binary-ports.scm \
58df2e43 198 ice-9/calling.scm \
da5d81a1 199 ice-9/command-line.scm \
58df2e43 200 ice-9/common-list.scm \
9b2a2a39 201 ice-9/control.scm \
9225df3c 202 ice-9/curried-definitions.scm \
58df2e43 203 ice-9/debug.scm \
58df2e43 204 ice-9/documentation.scm \
d59dd06e 205 ice-9/eval-string.scm \
58df2e43
AW
206 ice-9/expect.scm \
207 ice-9/format.scm \
0d4e6ca3 208 ice-9/futures.scm \
58df2e43
AW
209 ice-9/getopt-long.scm \
210 ice-9/hcons.scm \
211 ice-9/i18n.scm \
212 ice-9/lineio.scm \
213 ice-9/ls.scm \
214 ice-9/mapping.scm \
215 ice-9/match.scm \
216 ice-9/networking.scm \
217 ice-9/null.scm \
218 ice-9/occam-channel.scm \
219 ice-9/optargs.scm \
220 ice-9/poe.scm \
6f81b18a 221 ice-9/poll.scm \
58df2e43
AW
222 ice-9/popen.scm \
223 ice-9/posix.scm \
224 ice-9/q.scm \
225 ice-9/rdelim.scm \
226 ice-9/receive.scm \
227 ice-9/regex.scm \
228 ice-9/runq.scm \
229 ice-9/rw.scm \
230 ice-9/safe-r5rs.scm \
231 ice-9/safe.scm \
d8158b83 232 ice-9/save-stack.scm \
b2e27da3 233 ice-9/scm-style-repl.scm \
58df2e43
AW
234 ice-9/session.scm \
235 ice-9/slib.scm \
236 ice-9/stack-catch.scm \
237 ice-9/streams.scm \
238 ice-9/string-fun.scm \
239 ice-9/syncase.scm \
240 ice-9/threads.scm \
ff87b2bd 241 ice-9/top-repl.scm \
58df2e43
AW
242 ice-9/buffered-input.scm \
243 ice-9/time.scm \
244 ice-9/history.scm \
245 ice-9/channel.scm \
246 ice-9/pretty-print.scm \
247 ice-9/ftw.scm \
248 ice-9/gap-buffer.scm \
249 ice-9/weak-vector.scm \
58df2e43
AW
250 ice-9/list.scm \
251 ice-9/serialize.scm \
d062a8c1 252 ice-9/local-eval.scm
58df2e43
AW
253
254SRFI_SOURCES = \
58df2e43
AW
255 srfi/srfi-2.scm \
256 srfi/srfi-4.scm \
ac8ed3db 257 srfi/srfi-4/gnu.scm \
58df2e43
AW
258 srfi/srfi-6.scm \
259 srfi/srfi-8.scm \
260 srfi/srfi-9.scm \
3d82d9a6 261 srfi/srfi-9/gnu.scm \
58df2e43
AW
262 srfi/srfi-10.scm \
263 srfi/srfi-11.scm \
264 srfi/srfi-13.scm \
265 srfi/srfi-14.scm \
266 srfi/srfi-16.scm \
267 srfi/srfi-17.scm \
f176c584 268 srfi/srfi-18.scm \
58df2e43
AW
269 srfi/srfi-19.scm \
270 srfi/srfi-26.scm \
56ec46a7 271 srfi/srfi-27.scm \
58df2e43
AW
272 srfi/srfi-31.scm \
273 srfi/srfi-34.scm \
274 srfi/srfi-35.scm \
275 srfi/srfi-37.scm \
12708eeb 276 srfi/srfi-38.scm \
fdc8fd46 277 srfi/srfi-42.scm \
58df2e43 278 srfi/srfi-39.scm \
f16a2007 279 srfi/srfi-45.scm \
58df2e43 280 srfi/srfi-60.scm \
8175a07e 281 srfi/srfi-67.scm \
58df2e43 282 srfi/srfi-69.scm \
822aacbc
AW
283 srfi/srfi-88.scm \
284 srfi/srfi-98.scm
58df2e43 285
1ee2c72e 286RNRS_SOURCES = \
e44d2e4d
AW
287 rnrs/base.scm \
288 rnrs/conditions.scm \
289 rnrs/control.scm \
290 rnrs/enums.scm \
291 rnrs/eval.scm \
292 rnrs/exceptions.scm \
293 rnrs/files.scm \
294 rnrs/hashtables.scm \
295 rnrs/lists.scm \
296 rnrs/mutable-pairs.scm \
297 rnrs/mutable-strings.scm \
298 rnrs/programs.scm \
299 rnrs/r5rs.scm \
300 rnrs/sorting.scm \
301 rnrs/syntax-case.scm \
302 rnrs/unicode.scm \
303 rnrs/arithmetic/bitwise.scm \
304 rnrs/arithmetic/fixnums.scm \
305 rnrs/arithmetic/flonums.scm \
4c06cb2c 306 rnrs/bytevectors.scm \
e44d2e4d 307 rnrs/io/simple.scm \
60b240e9 308 rnrs/io/ports.scm \
e44d2e4d
AW
309 rnrs/records/inspection.scm \
310 rnrs/records/procedural.scm \
9d798af7
LC
311 rnrs/records/syntactic.scm \
312 rnrs.scm
1ee2c72e 313
6d66647d
AW
314EXTRA_DIST += scripts/ChangeLog-2008
315EXTRA_DIST += scripts/README
316
58df2e43
AW
317OOP_SOURCES = \
318 oop/goops.scm \
319 oop/goops/active-slot.scm \
320 oop/goops/compile.scm \
321 oop/goops/composite-slot.scm \
322 oop/goops/describe.scm \
323 oop/goops/dispatch.scm \
324 oop/goops/internal.scm \
325 oop/goops/save.scm \
326 oop/goops/stklos.scm \
327 oop/goops/util.scm \
328 oop/goops/accessors.scm \
329 oop/goops/simple.scm
330
3b12702f
AW
331SYSTEM_SOURCES = \
332 system/vm/inspect.scm \
36b5e394 333 system/vm/coverage.scm \
3b12702f
AW
334 system/vm/frame.scm \
335 system/vm/instruction.scm \
336 system/vm/objcode.scm \
3b12702f
AW
337 system/vm/program.scm \
338 system/vm/trace.scm \
c939b127 339 system/vm/traps.scm \
b9badc35 340 system/vm/trap-state.scm \
3b12702f 341 system/vm/vm.scm \
ab4779ff 342 system/foreign.scm \
3b12702f 343 system/xref.scm \
33df2ec7
AW
344 system/repl/debug.scm \
345 system/repl/error-handling.scm \
3b12702f 346 system/repl/common.scm \
33df2ec7 347 system/repl/command.scm \
d30542c2
AW
348 system/repl/repl.scm \
349 system/repl/server.scm
9c35c579 350
47f3ce52
AW
351LIB_SOURCES = \
352 statprof.scm \
353 sxml/apply-templates.scm \
354 sxml/fold.scm \
400a5dcb 355 sxml/match.scm \
47f3ce52
AW
356 sxml/simple.scm \
357 sxml/ssax/input-parse.scm \
358 sxml/ssax.scm \
359 sxml/transform.scm \
360 sxml/xpath.scm \
361 texinfo.scm \
362 texinfo/docbook.scm \
363 texinfo/html.scm \
364 texinfo/indexing.scm \
365 texinfo/string-utils.scm \
366 texinfo/plain-text.scm \
367 texinfo/reflection.scm \
368 texinfo/serialize.scm
369
73124c6c 370WEB_SOURCES = \
680c8c5a 371 web/client.scm \
440840c1 372 web/http.scm \
ad05d4e8 373 web/request.scm \
a9eeb2f4 374 web/response.scm \
79ef79ee
AW
375 web/server.scm \
376 web/server/http.scm \
73124c6c
AW
377 web/uri.scm
378
58df2e43
AW
379EXTRA_DIST += oop/ChangeLog-2008
380
3bb299b3 381NOCOMP_SOURCES = \
d967913f 382 ice-9/match.upstream.scm \
47f3ce52 383 ice-9/psyntax.scm \
b1e4c7cc 384 ice-9/r6rs-libraries.scm \
47f3ce52 385 ice-9/quasisyntax.scm \
fdc8fd46 386 srfi/srfi-42/ec.scm \
8175a07e 387 srfi/srfi-67/compare.scm \
1b101522 388 system/base/lalr.upstream.scm \
47f3ce52 389 system/repl/describe.scm \
400a5dcb 390 sxml/sxml-match.ss \
47f3ce52
AW
391 sxml/upstream/SSAX.scm \
392 sxml/upstream/SXML-tree-trans.scm \
393 sxml/upstream/SXPath-old.scm \
394 sxml/upstream/assert.scm \
395 sxml/upstream/input-parse.scm