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