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