95dc75ac2305a7c4606ab9a9fe8a5f250398cd27
[bpt/guile.git] / module / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2 ##
3 ## Copyright (C) 2009 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
8 ## it under the terms of the GNU General Public License as
9 ## published by the Free Software Foundation; either version 2, 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 General Public License for more details.
16 ##
17 ## You should have received a copy of the GNU General Public
18 ## License along with GUILE; see the file COPYING. If not, write
19 ## to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
20 ## 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 # Compile psyntax and boot-9 first, so that we get the speed benefit in
28 # the rest of the compilation. Also, if there is too much switching back
29 # and forth between interpreted and compiled code, we end up using more
30 # of the C stack than the interpreter would have; so avoid that by
31 # putting these core modules first.
32
33 SOURCES = \
34 ice-9/psyntax-pp.scm \
35 system/base/pmatch.scm system/base/syntax.scm \
36 system/base/compile.scm system/base/language.scm \
37 \
38 system/vm/debug.scm system/vm/frame.scm system/vm/instruction.scm \
39 system/vm/objcode.scm system/vm/profile.scm system/vm/program.scm \
40 system/vm/trace.scm system/vm/vm.scm \
41 \
42 system/xref.scm \
43 \
44 system/repl/repl.scm system/repl/common.scm \
45 system/repl/command.scm \
46 \
47 language/ghil.scm language/glil.scm language/assembly.scm \
48 \
49 $(SCHEME_LANG_SOURCES) $(ECMASCRIPT_LANG_SOURCES) \
50 $(GHIL_LANG_SOURCES) $(GLIL_LANG_SOURCES) \
51 $(ASSEMBLY_LANG_SOURCES) $(BYTECODE_LANG_SOURCES) \
52 $(OBJCODE_LANG_SOURCES) $(VALUE_LANG_SOURCES) \
53 \
54 $(ICE_9_SOURCES) \
55 $(SRFI_SOURCES) \
56 $(OOP_SOURCES) \
57 \
58 $(SCRIPTS_SOURCES)
59
60 ## test.scm is not currently installed.
61 EXTRA_DIST += ice-9/test.scm ice-9/compile-psyntax.scm ice-9/ChangeLog-2008
62
63 # We expect this to never be invoked when there is not already
64 # ice-9/psyntax-pp.scm in %load-path, since compile-psyntax.scm depends
65 # on ice-9/syncase.scm, which does `(load-from-path "ice-9/psyntax-pp.scm")'.
66 # In other words, to bootstrap this file, you need to do something like:
67 # GUILE_LOAD_PATH=/usr/local/share/guile/1.5.4 make psyntax-pp.scm
68 include $(top_srcdir)/am/pre-inst-guile
69 ice-9/psyntax-pp.scm: ice-9/psyntax.scm
70 $(preinstguile) -s $(srcdir)/ice-9/compile-psyntax.scm \
71 $(srcdir)/ice-9/psyntax.scm $(srcdir)/ice-9/psyntax-pp.scm
72
73 SCHEME_LANG_SOURCES = \
74 language/scheme/amatch.scm language/scheme/expand.scm \
75 language/scheme/compile-ghil.scm language/scheme/spec.scm \
76 language/scheme/inline.scm
77
78 GHIL_LANG_SOURCES = \
79 language/ghil/spec.scm language/ghil/compile-glil.scm
80
81 GLIL_LANG_SOURCES = \
82 language/glil/spec.scm language/glil/compile-assembly.scm \
83 language/glil/decompile-assembly.scm
84
85 ASSEMBLY_LANG_SOURCES = \
86 language/assembly/spec.scm \
87 language/assembly/compile-bytecode.scm \
88 language/assembly/decompile-bytecode.scm \
89 language/assembly/disassemble.scm
90
91 BYTECODE_LANG_SOURCES = \
92 language/bytecode/spec.scm
93
94 OBJCODE_LANG_SOURCES = \
95 language/objcode/spec.scm
96
97 VALUE_LANG_SOURCES = \
98 language/value/spec.scm
99
100 ECMASCRIPT_LANG_SOURCES = \
101 language/ecmascript/parse-lalr.scm \
102 language/ecmascript/tokenize.scm \
103 language/ecmascript/parse.scm \
104 language/ecmascript/spec.scm \
105 language/ecmascript/impl.scm \
106 language/ecmascript/base.scm \
107 language/ecmascript/function.scm \
108 language/ecmascript/array.scm \
109 language/ecmascript/compile-ghil.scm
110
111 SCRIPTS_SOURCES = \
112 scripts/PROGRAM.scm \
113 scripts/autofrisk.scm \
114 scripts/compile.scm \
115 scripts/disassemble.scm \
116 scripts/display-commentary.scm \
117 scripts/doc-snarf.scm \
118 scripts/frisk.scm \
119 scripts/generate-autoload.scm \
120 scripts/lint.scm \
121 scripts/punify.scm \
122 scripts/read-scheme-source.scm \
123 scripts/read-text-outline.scm \
124 scripts/use2dot.scm \
125 scripts/snarf-check-and-output-texi.scm \
126 scripts/summarize-guile-TODO.scm \
127 scripts/scan-api.scm \
128 scripts/api-diff.scm \
129 scripts/read-rfc822.scm \
130 scripts/snarf-guile-m4-docs.scm
131
132 ICE_9_SOURCES = \
133 ice-9/boot-9.scm \
134 ice-9/r4rs.scm \
135 ice-9/r5rs.scm \
136 ice-9/and-let-star.scm \
137 ice-9/calling.scm \
138 ice-9/common-list.scm \
139 ice-9/debug.scm \
140 ice-9/debugger.scm \
141 ice-9/documentation.scm \
142 ice-9/emacs.scm \
143 ice-9/expand-support.scm \
144 ice-9/expect.scm \
145 ice-9/format.scm \
146 ice-9/getopt-long.scm \
147 ice-9/hcons.scm \
148 ice-9/i18n.scm \
149 ice-9/lineio.scm \
150 ice-9/ls.scm \
151 ice-9/mapping.scm \
152 ice-9/match.scm \
153 ice-9/networking.scm \
154 ice-9/null.scm \
155 ice-9/occam-channel.scm \
156 ice-9/optargs.scm \
157 ice-9/poe.scm \
158 ice-9/popen.scm \
159 ice-9/posix.scm \
160 ice-9/q.scm \
161 ice-9/rdelim.scm \
162 ice-9/receive.scm \
163 ice-9/regex.scm \
164 ice-9/runq.scm \
165 ice-9/rw.scm \
166 ice-9/safe-r5rs.scm \
167 ice-9/safe.scm \
168 ice-9/session.scm \
169 ice-9/slib.scm \
170 ice-9/stack-catch.scm \
171 ice-9/streams.scm \
172 ice-9/string-fun.scm \
173 ice-9/syncase.scm \
174 ice-9/threads.scm \
175 ice-9/buffered-input.scm \
176 ice-9/time.scm \
177 ice-9/history.scm \
178 ice-9/channel.scm \
179 ice-9/pretty-print.scm \
180 ice-9/ftw.scm \
181 ice-9/gap-buffer.scm \
182 ice-9/weak-vector.scm \
183 ice-9/deprecated.scm \
184 ice-9/list.scm \
185 ice-9/serialize.scm \
186 ice-9/gds-server.scm
187
188 SRFI_SOURCES = \
189 srfi/srfi-1.scm \
190 srfi/srfi-2.scm \
191 srfi/srfi-4.scm \
192 srfi/srfi-6.scm \
193 srfi/srfi-8.scm \
194 srfi/srfi-9.scm \
195 srfi/srfi-10.scm \
196 srfi/srfi-11.scm \
197 srfi/srfi-13.scm \
198 srfi/srfi-14.scm \
199 srfi/srfi-16.scm \
200 srfi/srfi-17.scm \
201 srfi/srfi-19.scm \
202 srfi/srfi-26.scm \
203 srfi/srfi-31.scm \
204 srfi/srfi-34.scm \
205 srfi/srfi-35.scm \
206 srfi/srfi-37.scm \
207 srfi/srfi-39.scm \
208 srfi/srfi-60.scm \
209 srfi/srfi-69.scm \
210 srfi/srfi-88.scm
211
212 EXTRA_DIST += scripts/ChangeLog-2008
213 EXTRA_DIST += scripts/README
214
215 OOP_SOURCES = \
216 oop/goops.scm \
217 oop/goops/active-slot.scm \
218 oop/goops/compile.scm \
219 oop/goops/composite-slot.scm \
220 oop/goops/describe.scm \
221 oop/goops/dispatch.scm \
222 oop/goops/internal.scm \
223 oop/goops/save.scm \
224 oop/goops/stklos.scm \
225 oop/goops/util.scm \
226 oop/goops/accessors.scm \
227 oop/goops/simple.scm
228
229 EXTRA_DIST += oop/ChangeLog-2008
230
231 NOCOMP_SOURCES = \
232 ice-9/gds-client.scm \
233 ice-9/psyntax.scm \
234 system/repl/describe.scm \
235 ice-9/debugger/command-loop.scm \
236 ice-9/debugger/commands.scm \
237 ice-9/debugger/state.scm \
238 ice-9/debugger/trc.scm \
239 ice-9/debugger/utils.scm \
240 ice-9/debugging/example-fns.scm \
241 ice-9/debugging/ice-9-debugger-extensions.scm \
242 ice-9/debugging/steps.scm \
243 ice-9/debugging/trace.scm \
244 ice-9/debugging/traps.scm \
245 ice-9/debugging/trc.scm \
246 srfi/srfi-18.scm