Fix stack calibration-related errors when running make distcheck.
[bpt/guile.git] / libguile / Makefile.am
1 ## Process this file with Automake to create Makefile.in
2 ##
3 ## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008 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 AUTOMAKE_OPTIONS = gnu
23
24 ## Prevent automake from adding extra -I options
25 DEFS = @DEFS@
26
27 # Override Automake's `DEFAULT_INCLUDES'. By default, it contains
28 # "-I$(srcdir)", which causes problems on Tru64 where our "random.h"
29 # is picked up by <stdlib.h> instead of the libc's <random.h>.
30 DEFAULT_INCLUDES =
31
32 ## Check for headers in $(srcdir)/.., so that #include
33 ## <libguile/MUMBLE.h> will find MUMBLE.h in this dir when we're
34 ## building. Also look for Gnulib headers in `lib'.
35 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) \
36 -I$(top_srcdir)/lib -I$(top_builddir)/lib
37
38 AM_CFLAGS = $(GCC_CFLAGS)
39
40 ## The Gnulib Libtool archive.
41 gnulib_library = $(top_builddir)/lib/libgnu.la
42
43 ETAGS_ARGS = --regex='/SCM_\(GLOBAL_\)?\(G?PROC\|G?PROC1\|SYMBOL\|VCELL\|CONST_LONG\).*\"\([^\"]\)*\"/\3/' \
44 --regex='/[ \t]*SCM_[G]?DEFINE1?[ \t]*(\([^,]*\),[^,]*/\1/'
45
46 lib_LTLIBRARIES = libguile.la \
47 libguile-i18n-v-@LIBGUILE_I18N_MAJOR@.la
48 bin_PROGRAMS = guile
49
50 noinst_PROGRAMS = guile_filter_doc_snarfage gen-scmconfig
51
52 gen_scmconfig_SOURCES = gen-scmconfig.c
53
54 ## Override default rule; this should be compiled for BUILD host.
55 ## For some reason, OBJEXT does not include the dot
56 gen-scmconfig.$(OBJEXT): gen-scmconfig.c
57 if [ "$(cross_compiling)" = "yes" ]; then \
58 $(CC_FOR_BUILD) $(DEFS) $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) -c -o $@ $<; \
59 else \
60 $(COMPILE) -c -o $@ $<; \
61 fi
62
63 ## Override default rule; this should run on BUILD host.
64 gen-scmconfig$(EXEEXT): $(gen_scmconfig_OBJECTS) $(gen_scmconfig_DEPENDENCIES)
65 @rm -f gen-scmconfig$(EXEEXT)
66 if [ "$(cross_compiling)" = "yes" ]; then \
67 $(CCLD_FOR_BUILD) -o $@ $(gen_scmconfig_OBJECTS); \
68 else \
69 $(LINK) $(gen_scmconfig_OBJECTS) $(LDADD) $(LIBS); \
70 fi
71
72 scmconfig.h: ${top_builddir}/config.h gen-scmconfig$(EXEEXT)
73 rm -f scmconfig.h.tmp
74 cat $(srcdir)/scmconfig.h.top > scmconfig.h.tmp
75 ./gen-scmconfig$(EXEEXT) >> scmconfig.h.tmp
76 chmod 444 scmconfig.h.tmp
77 rm -f scmconfig.h
78 mv scmconfig.h.tmp scmconfig.h
79
80 guile_filter_doc_snarfage_SOURCES = c-tokenize.c
81
82 ## Override default rule; this should be compiled for BUILD host.
83 ## For some reason, OBJEXT does not include the dot
84 c-tokenize.$(OBJEXT): c-tokenize.c
85 if [ "$(cross_compiling)" = "yes" ]; then \
86 $(CC_FOR_BUILD) $(DEFS) $(AM_CPPFLAGS) -c -o $@ $<; \
87 else \
88 $(COMPILE) -c -o $@ $<; \
89 fi
90
91 ## Override default rule; this should run on BUILD host.
92 guile_filter_doc_snarfage$(EXEEXT): $(guile_filter_doc_snarfage_OBJECTS) $(guile_filter_doc_snarfage_DEPENDENCIES)
93 @rm -f guile_filter_doc_snarfage$(EXEEXT)
94 if [ "$(cross_compiling)" = "yes" ]; then \
95 $(CCLD_FOR_BUILD) -o $@ $(guile_filter_doc_snarfage_OBJECTS); \
96 else \
97 $(LINK) $(guile_filter_doc_snarfage_OBJECTS) $(LDADD) $(LIBS); \
98 fi
99
100
101 guile_SOURCES = guile.c
102 guile_CFLAGS = $(GUILE_CFLAGS) $(AM_CFLAGS)
103 guile_LDADD = libguile.la
104 guile_LDFLAGS = @DLPREOPEN@ $(GUILE_CFLAGS)
105
106 libguile_la_CFLAGS = $(GUILE_CFLAGS) $(AM_CFLAGS)
107
108 libguile_la_SOURCES = alist.c arbiters.c async.c backtrace.c boolean.c \
109 chars.c continuations.c convert.c debug.c deprecation.c \
110 deprecated.c discouraged.c dynwind.c eq.c error.c \
111 eval.c evalext.c extensions.c feature.c fluids.c fports.c \
112 futures.c gc.c gc-mark.c gc-segment.c gc-malloc.c gc-card.c \
113 gc-freelist.c gc_os_dep.c gdbint.c gettext.c gc-segment-table.c \
114 goops.c gsubr.c \
115 guardians.c hash.c hashtab.c hooks.c init.c inline.c \
116 ioext.c keywords.c lang.c list.c load.c macros.c mallocs.c \
117 modules.c numbers.c objects.c objprop.c options.c pairs.c ports.c \
118 print.c procprop.c procs.c properties.c random.c rdelim.c read.c \
119 root.c rw.c scmsigs.c script.c simpos.c smob.c sort.c srcprop.c \
120 stackchk.c stacks.c stime.c strings.c srfi-4.c srfi-13.c srfi-14.c \
121 strorder.c strports.c struct.c symbols.c threads.c null-threads.c \
122 throw.c values.c variable.c vectors.c version.c vports.c weaks.c \
123 ramap.c unif.c
124
125 libguile_i18n_v_@LIBGUILE_I18N_MAJOR@_la_SOURCES = i18n.c
126 libguile_i18n_v_@LIBGUILE_I18N_MAJOR@_la_CFLAGS = \
127 $(libguile_la_CFLAGS)
128 libguile_i18n_v_@LIBGUILE_I18N_MAJOR@_la_LIBADD = \
129 libguile.la $(gnulib_library)
130 libguile_i18n_v_@LIBGUILE_I18N_MAJOR@_la_LDFLAGS = \
131 -module -L$(builddir) -lguile \
132 -version-info @LIBGUILE_I18N_INTERFACE@
133
134 DOT_X_FILES = alist.x arbiters.x async.x backtrace.x boolean.x chars.x \
135 continuations.x debug.x deprecation.x deprecated.x discouraged.x \
136 dynl.x dynwind.x eq.x error.x eval.x evalext.x \
137 extensions.x feature.x fluids.x fports.x futures.x gc.x gc-mark.x \
138 gc-segment.x gc-malloc.x gc-card.x gettext.x goops.x \
139 gsubr.x guardians.x gc-segment-table.x \
140 hash.x hashtab.x hooks.x i18n.x init.x ioext.x keywords.x lang.x \
141 list.x load.x macros.x mallocs.x modules.x numbers.x objects.x \
142 objprop.x options.x pairs.x ports.x print.x procprop.x procs.x \
143 properties.x random.x rdelim.x read.x root.x rw.x scmsigs.x \
144 script.x simpos.x smob.x sort.x srcprop.x stackchk.x stacks.x \
145 stime.x strings.x srfi-4.x srfi-13.x srfi-14.x strorder.x \
146 strports.x struct.x symbols.x threads.x throw.x values.x \
147 variable.x vectors.x version.x vports.x weaks.x ramap.x unif.x
148
149 EXTRA_DOT_X_FILES = @EXTRA_DOT_X_FILES@
150
151 DOT_DOC_FILES = alist.doc arbiters.doc async.doc backtrace.doc \
152 boolean.doc chars.doc continuations.doc debug.doc deprecation.doc \
153 deprecated.doc discouraged.doc dynl.doc dynwind.doc \
154 eq.doc error.doc eval.doc evalext.doc \
155 extensions.doc feature.doc fluids.doc fports.doc futures.doc \
156 gc.doc goops.doc gsubr.doc gc-mark.doc gc-segment.doc \
157 gc-malloc.doc gc-card.doc gettext.doc gc-segment-table.doc \
158 guardians.doc hash.doc hashtab.doc \
159 hooks.doc i18n.doc init.doc ioext.doc keywords.doc lang.doc \
160 list.doc load.doc macros.doc mallocs.doc modules.doc numbers.doc \
161 objects.doc objprop.doc options.doc pairs.doc ports.doc print.doc \
162 procprop.doc procs.doc properties.doc random.doc rdelim.doc \
163 read.doc root.doc rw.doc scmsigs.doc script.doc simpos.doc \
164 smob.doc sort.doc srcprop.doc stackchk.doc stacks.doc stime.doc \
165 strings.doc srfi-4.doc srfi-13.doc srfi-14.doc strorder.doc \
166 strports.doc struct.doc symbols.doc threads.doc throw.doc \
167 values.doc variable.doc vectors.doc version.doc vports.doc \
168 weaks.doc ramap.doc unif.doc
169
170 EXTRA_DOT_DOC_FILES = @EXTRA_DOT_DOC_FILES@
171
172 BUILT_SOURCES = cpp_err_symbols.c cpp_sig_symbols.c libpath.h \
173 version.h scmconfig.h \
174 $(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
175
176 EXTRA_libguile_la_SOURCES = _scm.h \
177 inet_aton.c memmove.c putenv.c strerror.c \
178 dynl.c regex-posix.c \
179 filesys.c posix.c net_db.c socket.c \
180 debug-malloc.c mkstemp.c \
181 win32-uname.c win32-dirent.c win32-socket.c \
182 locale-categories.h
183
184 ## delete guile-snarf.awk from the installation bindir, in case it's
185 ## lingering there due to an earlier guile version not having been
186 ## wiped out.
187 install-exec-hook:
188 rm -f $(DESTDIR)$(bindir)/guile-snarf.awk
189
190 ## This is kind of nasty... there are ".c" files that we don't want to
191 ## compile, since they are #included. So instead we list them here.
192 ## Perhaps we can deal with them normally once the merge seems to be
193 ## working.
194 noinst_HEADERS = convert.i.c \
195 conv-integer.i.c conv-uinteger.i.c \
196 eval.i.c \
197 srfi-4.i.c \
198 quicksort.i.c \
199 win32-uname.h win32-dirent.h win32-socket.h \
200 private-gc.h private-options.h
201
202 libguile_la_DEPENDENCIES = @LIBLOBJS@
203 libguile_la_LIBADD = @LIBLOBJS@ $(gnulib_library)
204 libguile_la_LDFLAGS = @LTLIBINTL@ -version-info @LIBGUILE_INTERFACE_CURRENT@:@LIBGUILE_INTERFACE_REVISION@:@LIBGUILE_INTERFACE_AGE@ -export-dynamic -no-undefined
205
206 # These are headers visible as <guile/mumble.h>
207 pkginclude_HEADERS =
208
209 # These are headers visible as <libguile/mumble.h>.
210 modincludedir = $(includedir)/libguile
211 modinclude_HEADERS = __scm.h alist.h arbiters.h async.h backtrace.h \
212 boolean.h chars.h continuations.h convert.h debug.h debug-malloc.h \
213 deprecation.h deprecated.h discouraged.h dynl.h dynwind.h \
214 eq.h error.h eval.h evalext.h extensions.h \
215 feature.h filesys.h fluids.h fports.h futures.h gc.h \
216 gdb_interface.h gdbint.h gettext.h goops.h \
217 gsubr.h guardians.h hash.h \
218 hashtab.h hooks.h i18n.h init.h inline.h ioext.h iselect.h \
219 keywords.h lang.h list.h load.h macros.h mallocs.h modules.h \
220 net_db.h numbers.h objects.h objprop.h options.h pairs.h ports.h \
221 posix.h regex-posix.h print.h procprop.h procs.h properties.h \
222 random.h ramap.h rdelim.h read.h root.h rw.h scmsigs.h validate.h \
223 script.h simpos.h smob.h snarf.h socket.h sort.h srcprop.h \
224 stackchk.h stacks.h stime.h strings.h srfi-4.h srfi-13.h srfi-14.h \
225 strorder.h strports.h struct.h symbols.h tags.h threads.h \
226 pthread-threads.h null-threads.h throw.h unif.h values.h \
227 variable.h vectors.h vports.h weaks.h
228
229 nodist_modinclude_HEADERS = version.h scmconfig.h
230
231 bin_SCRIPTS = guile-snarf
232
233 # We can re-enable install for some of these if/when they are documented
234 # and people feel like maintaining them. For now, this is not the case.
235 noinst_SCRIPTS = guile-doc-snarf guile-snarf-docs guile-func-name-check
236
237 EXTRA_DIST = ChangeLog-scm ChangeLog-threads \
238 ChangeLog-1996-1999 ChangeLog-2000 ChangeLog-2008 cpp_signal.c \
239 cpp_errno.c cpp_err_symbols.in cpp_err_symbols.c \
240 cpp_sig_symbols.c cpp_sig_symbols.in cpp_cnvt.awk \
241 c-tokenize.lex version.h.in \
242 scmconfig.h.top libgettext.h measure-hwm.scm
243 # $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES) \
244 # guile-procedures.txt guile.texi
245
246 ## We use @-...-@ as the substitution brackets here, instead of the
247 ## usual @...@, so autoconf doesn't go and substitute the values
248 ## directly into the left-hand sides of the sed substitutions. *sigh*
249 version.h: version.h.in
250 sed < $(srcdir)/version.h.in > $@.tmp \
251 -e s:@-GUILE_MAJOR_VERSION-@:${GUILE_MAJOR_VERSION}: \
252 -e s:@-GUILE_MINOR_VERSION-@:${GUILE_MINOR_VERSION}: \
253 -e s:@-GUILE_MICRO_VERSION-@:${GUILE_MICRO_VERSION}:
254 mv $@.tmp $@
255
256 ## FIXME: Consider using timestamp file, to avoid unnecessary rebuilds.
257 libpath.h: $(srcdir)/Makefile.in $(top_builddir)/config.status
258 @echo "Generating libpath.h..."
259 @rm -f libpath.tmp
260 @echo '/* generated by Makefile */' > libpath.tmp
261 @echo '#define SCM_PKGDATA_DIR "$(pkgdatadir)"' >> libpath.tmp
262 @echo '#define SCM_LIBRARY_DIR "$(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)"'>>libpath.tmp
263 @echo '#define SCM_SITE_DIR "$(pkgdatadir)/site"' >> libpath.tmp
264 @echo '#define SCM_BUILD_INFO { \' >> libpath.tmp
265 @echo ' { "srcdir", "'"`cd @srcdir@; pwd`"'" }, \' >> libpath.tmp
266 @echo ' { "top_srcdir", "@top_srcdir_absolute@" }, \' >> libpath.tmp
267 @echo ' { "prefix", "@prefix@" }, \' >> libpath.tmp
268 @echo ' { "exec_prefix", "@exec_prefix@" }, \' >> libpath.tmp
269 @echo ' { "bindir", "@bindir@" }, \' >> libpath.tmp
270 @echo ' { "sbindir", "@sbindir@" }, \' >> libpath.tmp
271 @echo ' { "libexecdir", "@libexecdir@" }, \' >> libpath.tmp
272 @echo ' { "datadir", "@datadir@" }, \' >> libpath.tmp
273 @echo ' { "sysconfdir", "@sysconfdir@" }, \' >> libpath.tmp
274 @echo ' { "sharedstatedir", "@sharedstatedir@" }, \' >> libpath.tmp
275 @echo ' { "localstatedir", "@localstatedir@" }, \' >> libpath.tmp
276 @echo ' { "libdir", "@libdir@" }, \' >> libpath.tmp
277 @echo ' { "infodir", "@infodir@" }, \' >> libpath.tmp
278 @echo ' { "mandir", "@mandir@" }, \' >> libpath.tmp
279 @echo ' { "includedir", "@includedir@" }, \' >> libpath.tmp
280 @echo ' { "pkgdatadir", "$(datadir)/@PACKAGE@" }, \' >> libpath.tmp
281 @echo ' { "pkglibdir", "$(libdir)/@PACKAGE@" }, \' >> libpath.tmp
282 @echo ' { "pkgincludedir", "$(includedir)/@PACKAGE@" }, \' \
283 >> libpath.tmp
284 @echo ' { "guileversion", "@GUILE_VERSION@" }, \' >> libpath.tmp
285 @echo ' { "libguileinterface", "@LIBGUILE_INTERFACE@" }, \' \
286 >> libpath.tmp
287 @echo ' { "LIBS", "@GUILE_LIBS@" }, \' >> libpath.tmp
288 @echo ' { "CFLAGS", "@GUILE_CFLAGS@" }, \' >> libpath.tmp
289 @echo ' { "buildstamp", "'"`date`"'" }, \' >> libpath.tmp
290 @echo '}' >> libpath.tmp
291 @mv libpath.tmp libpath.h
292
293
294 snarfcppopts = $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS)
295
296 SUFFIXES = .x .doc
297 .c.x:
298 ./guile-snarf -o $@ $< $(snarfcppopts)
299 .c.doc:
300 -$(AWK) -f ./guile-func-name-check $<
301 (./guile-snarf-docs $(snarfcppopts) $< | \
302 ./guile_filter_doc_snarfage$(EXEEXT) --filter-snarfage) > $@ || { rm $@; false; }
303
304 $(DOT_X_FILES) $(EXTRA_DOT_X_FILES): scmconfig.h snarf.h guile-snarf.in
305
306 $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): scmconfig.h snarf.h guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
307
308 error.x: cpp_err_symbols.c
309 posix.x: cpp_sig_symbols.c
310 load.x: libpath.h
311
312 include $(top_srcdir)/am/pre-inst-guile
313
314 alldotdocfiles = $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES)
315 snarf2checkedtexi = GUILE="$(GUILE_FOR_BUILD)" $(top_srcdir)/scripts/snarf-check-and-output-texi
316 dotdoc2texi = cat $(alldotdocfiles) | $(snarf2checkedtexi)
317
318 guile.texi: $(alldotdocfiles) guile$(EXEEXT)
319 $(dotdoc2texi) --manual > $@ || { rm $@; false; }
320
321 guile-procedures.texi: $(alldotdocfiles) guile$(EXEEXT)
322 $(dotdoc2texi) > $@ || { rm $@; false; }
323
324 if HAVE_MAKEINFO
325
326 guile-procedures.txt: guile-procedures.texi
327 rm -f $@
328 makeinfo --force -o $@ guile-procedures.texi || test -f $@
329
330 else
331
332 guile-procedures.txt: guile-procedures.texi
333 cp guile-procedures.texi $@
334
335 endif
336
337 # Stack limit calibration for `make check'. (For why we do this, see
338 # the comments in measure-hwm.scm.) We're relying here on a couple of
339 # bits of Automake magic.
340 #
341 # 1. The fact that "libguile" comes before "test-suite" in SUBDIRS in
342 # our toplevel Makefile.am. This ensures that the
343 # stack-limit-calibration.scm "test" will be run before any of the
344 # tests under test-suite.
345 #
346 # 2. The fact that each test is invoked as $TESTS_ENVIRONMENT $test.
347 # This allows us to ensure that the test will be considered to have
348 # passed, by using `true' as TESTS_ENVIRONMENT.
349 #
350 # Why don't we care about the test "actually passing"? Because the
351 # important thing about stack-limit-calibration.scm is just that it is
352 # generated in the first place, so that other tests under test-suite
353 # can use it.
354 TESTS = stack-limit-calibration.scm
355 TESTS_ENVIRONMENT = true
356
357 stack-limit-calibration.scm: measure-hwm.scm guile$(EXEEXT)
358 $(preinstguile) -s $(srcdir)/measure-hwm.scm > $@
359
360 c-tokenize.c: c-tokenize.lex
361 flex -t $(srcdir)/c-tokenize.lex > $@ || { rm $@; false; }
362
363 schemelibdir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)
364 schemelib_DATA = guile-procedures.txt
365
366 ## Add -MG to make the .x magic work with auto-dep code.
367 MKDEP = gcc -M -MG $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS)
368
369 cpp_err_symbols.c: cpp_err_symbols.in cpp_cnvt.awk
370 $(AWK) -f $(srcdir)/cpp_cnvt.awk < $(srcdir)/cpp_err_symbols.in > \
371 cpp_err_symbols.tmp
372 mv cpp_err_symbols.tmp cpp_err_symbols.c
373
374 cpp_sig_symbols.c: cpp_sig_symbols.in cpp_cnvt.awk
375 $(AWK) -f $(srcdir)/cpp_cnvt.awk < $(srcdir)/cpp_sig_symbols.in > \
376 cpp_sig_symbols.tmp
377 mv cpp_sig_symbols.tmp cpp_sig_symbols.c
378
379 ## Create a new version of the cpp_sig_symbols.in file, including all SIGXXX
380 ## macros defined on this platform.
381 check_signals:
382 gcc -undef -dM -E $(srcdir)/cpp_signal.c | egrep ' SIG[A-Z]+' \
383 | cut -f2 -d' ' | sort > cpp_sig_symbols_here
384 diff -u $(srcdir)/cpp_sig_symbols.in cpp_sig_symbols_here \
385 | egrep '^\+S' \
386 | cut -c2- > cpp_sig_symbols_diff
387 if test -s cpp_sig_symbols_diff ; then \
388 cat $(srcdir)/cpp_sig_symbols.in cpp_sig_symbols_diff \
389 | sort > cpp_sig_symbols_new ;\
390 echo "cpp_sig_symbols_new has the following additions:" ;\
391 cat cpp_sig_symbols_diff ;\
392 else echo "No new symbols found."; \
393 fi
394
395 ## Likewise for cpp_err_symbols.in.
396 check_errnos:
397 gcc -undef -dM -E $(srcdir)/cpp_errno.c | egrep ' E.+' \
398 | cut -f2 -d' ' | sort > cpp_err_symbols_here
399 diff -u $(srcdir)/cpp_err_symbols.in cpp_err_symbols_here \
400 | egrep '^\+E' \
401 | cut -c2- > cpp_err_symbols_diff
402 if test -s cpp_err_symbols_diff ; then \
403 cat $(srcdir)/cpp_err_symbols.in cpp_err_symbols_diff \
404 | sort > cpp_err_symbols_new ;\
405 echo "cpp_err_symbols_new has the following additions:" ;\
406 cat cpp_err_symbols_diff ;\
407 else echo "No new symbols found."; \
408 fi
409
410 MOSTLYCLEANFILES = \
411 cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new \
412 cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new \
413 version.h version.h.tmp \
414 scmconfig.h scmconfig.h.tmp stack-limit-calibration.scm
415
416 CLEANFILES = libpath.h *.x *.doc guile-procedures.txt guile-procedures.texi guile.texi
417
418 MAINTAINERCLEANFILES = c-tokenize.c