2003-05-29 Stefan Jahn <stefan@lkcc.org>
[bpt/guile.git] / libguile / Makefile.am
CommitLineData
733943b9 1## Process this file with Automake to create Makefile.in
2764bd99 2##
756414cf 3## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
2764bd99
JB
4##
5## This file is part of GUILE.
54f16aec 6##
2764bd99
JB
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.
54f16aec 11##
2764bd99
JB
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.
54f16aec 16##
2764bd99
JB
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., 59 Temple Place, Suite
20## 330, Boston, MA 02111-1307 USA
733943b9 21
3307df95 22AUTOMAKE_OPTIONS = gnu
733943b9 23
a0599745 24## Prevent automake from adding extra -I options
8f99e3f3 25DEFS = @DEFS@
733943b9
TT
26## Check for headers in $(srcdir)/.., so that #include
27## <libguile/MUMBLE.h> will find MUMBLE.h in this dir when we're
28## building.
45cf70fa 29INCLUDES = -I.. -I$(top_srcdir) -I$(top_srcdir)/libguile-ltdl
733943b9 30
4079f87e 31ETAGS_ARGS = --regex='/SCM_\(GLOBAL_\)?\(G?PROC\|G?PROC1\|SYMBOL\|VCELL\|CONST_LONG\).*\"\([^\"]\)*\"/\3/' \
abc049a9 32 --regex='/[ \t]*SCM_[G]?DEFINE1?[ \t]*(\([^,]*\),[^,]*/\1/'
fef07353 33
e13d8dc0 34lib_LTLIBRARIES = libguile.la
f94b6524 35bin_PROGRAMS = guile
b32fca0f 36
64c2db80
RB
37noinst_PROGRAMS = guile_filter_doc_snarfage gen-scmconfig
38
39gen_scmconfig_SOURCES = gen-scmconfig.c
40
41## Override default rule; this should be compiled for BUILD host.
42## For some reason, OBJEXT does not include the dot
43gen-scmconfig.$(OBJEXT): gen-scmconfig.c
44 if [ "$(cross_compiling)" = "yes" ]; then \
2e945bcc 45 $(CC_FOR_BUILD) $(DEFS) $(INCLUDES) -c -o $@ $<; \
64c2db80
RB
46 else \
47 $(COMPILE) -c -o $@ $<; \
48 fi
49
2e945bcc
SJ
50## Override default rule; this should run on BUILD host.
51gen-scmconfig$(EXEEXT): $(gen_scmconfig_OBJECTS) $(gen_scmconfig_DEPENDENCIES)
52 @rm -f gen-scmconfig$(EXEEXT)
53 if [ "$(cross_compiling)" = "yes" ]; then \
54 $(CCLD_FOR_BUILD) -o $@ $(gen_scmconfig_OBJECTS); \
55 else \
56 $(LINK) $(gen_scmconfig_OBJECTS) $(LDADD) $(LIBS); \
57 fi
58
59scmconfig.h: ${top_builddir}/config.h gen-scmconfig$(EXEEXT)
64c2db80 60 rm -f scmconfig.h.tmp
eaf94f77 61 cat $(srcdir)/scmconfig.h.top > scmconfig.h.tmp
2e945bcc 62 ./gen-scmconfig$(EXEEXT) >> scmconfig.h.tmp
64c2db80
RB
63 chmod 444 scmconfig.h.tmp
64 rm -f scmconfig.h
65 mv scmconfig.h.tmp scmconfig.h
66
b32fca0f
MV
67guile_filter_doc_snarfage_SOURCES = c-tokenize.c
68
69## Override default rule; this should be compiled for BUILD host.
70## For some reason, OBJEXT does not include the dot
71c-tokenize.$(OBJEXT): c-tokenize.c
72 if [ "$(cross_compiling)" = "yes" ]; then \
2e945bcc 73 $(CC_FOR_BUILD) $(DEFS) $(INCLUDES) -c -o $@ $<; \
b32fca0f 74 else \
93eaa2a2 75 $(COMPILE) -c -o $@ $<; \
b32fca0f
MV
76 fi
77
78## Override default rule; this should run on BUILD host.
79guile_filter_doc_snarfage$(EXEEXT): $(guile_filter_doc_snarfage_OBJECTS) $(guile_filter_doc_snarfage_DEPENDENCIES)
80 @rm -f guile_filter_doc_snarfage$(EXEEXT)
81 if [ "$(cross_compiling)" = "yes" ]; then \
82 $(CCLD_FOR_BUILD) -o $@ $(guile_filter_doc_snarfage_OBJECTS); \
83 else \
84 $(LINK) $(guile_filter_doc_snarfage_OBJECTS) $(LDADD) $(LIBS); \
85 fi
86
549436de
JB
87
88guile_SOURCES = guile.c
8f99e3f3 89guile_LDADD = libguile.la
6165ede3 90guile_LDFLAGS = @DLPREOPEN@
ee2a8b9b 91
438b2738 92libguile_la_SOURCES = alist.c arbiters.c async.c backtrace.c boolean.c \
c70de3c7 93 chars.c continuations.c convert.c debug.c deprecation.c deprecated.c \
5dacb21f 94 dynwind.c environments.c eq.c error.c eval.c evalext.c extensions.c \
756414cf 95 feature.c fluids.c fports.c futures.c \
5dacb21f 96 gc.c gc-mark.c gc-segment.c gc-malloc.c gc-card.c gc-freelist.c \
c8a1bdc4 97 gc_os_dep.c gdbint.c gh_data.c gh_eval.c gh_funcs.c gh_init.c \
438b2738 98 gh_io.c gh_list.c gh_predicates.c goops.c gsubr.c guardians.c hash.c \
340c49bf 99 hashtab.c hooks.c init.c inline.c ioext.c keywords.c \
9b7ee9d8 100 lang.c list.c \
438b2738
MV
101 load.c macros.c mallocs.c modules.c numbers.c objects.c objprop.c \
102 options.c pairs.c ports.c print.c procprop.c procs.c properties.c \
103 random.c rdelim.c read.c root.c rw.c scmsigs.c script.c simpos.c smob.c \
104 sort.c srcprop.c stackchk.c stacks.c stime.c strings.c strop.c \
5dacb21f 105 strorder.c strports.c struct.c symbols.c threads.c throw.c values.c \
dee01b01 106 variable.c vectors.c version.c vports.c weaks.c
03416a99 107
7e516288 108DOT_X_FILES = alist.x arbiters.x async.x backtrace.x boolean.x chars.x \
c70de3c7 109 continuations.x debug.x deprecation.x deprecated.x dynl.x dynwind.x \
7e516288 110 environments.x eq.x \
438b2738 111 error.x eval.x evalext.x extensions.x feature.x fluids.x fports.x \
756414cf 112 futures.x \
5dacb21f 113 gc.x gc-mark.x gc-segment.x gc-malloc.x gc-card.x goops.x \
c70de3c7 114 gsubr.x guardians.x hash.x hashtab.x hooks.x init.x ioext.x \
7e516288
MV
115 keywords.x lang.x list.x load.x macros.x mallocs.x modules.x \
116 numbers.x objects.x objprop.x options.x pairs.x ports.x print.x \
117 procprop.x procs.x properties.x random.x rdelim.x read.x root.x rw.x \
118 scmsigs.x script.x simpos.x smob.x sort.x srcprop.x \
119 stackchk.x stacks.x stime.x strings.x strop.x strorder.x strports.x \
5dacb21f 120 struct.x symbols.x threads.x throw.x values.x variable.x vectors.x \
dee01b01 121 version.x vports.x weaks.x
8bee78b3 122
e9e225e5 123EXTRA_DOT_X_FILES = @EXTRA_DOT_X_FILES@
8bee78b3 124
86d31dfe 125DOT_DOC_FILES = alist.doc arbiters.doc async.doc backtrace.doc \
c70de3c7
MV
126 boolean.doc chars.doc continuations.doc debug.doc deprecation.doc \
127 deprecated.doc dynl.doc dynwind.doc environments.doc eq.doc \
128 error.doc eval.doc evalext.doc \
756414cf
MD
129 extensions.doc feature.doc fluids.doc fports.doc futures.doc \
130 gc.doc goops.doc \
c70de3c7 131 gsubr.doc gc-mark.doc gc-segment.doc gc-malloc.doc gc-card.doc \
86d31dfe 132 guardians.doc hash.doc hashtab.doc hooks.doc init.doc ioext.doc \
c70de3c7 133 keywords.doc lang.doc list.doc load.doc macros.doc \
86d31dfe
MV
134 mallocs.doc modules.doc numbers.doc objects.doc objprop.doc \
135 options.doc pairs.doc ports.doc print.doc procprop.doc \
b0e5fd8c 136 procs.doc properties.doc random.doc rdelim.doc read.doc root.doc rw.doc \
86d31dfe
MV
137 scmsigs.doc script.doc simpos.doc smob.doc sort.doc \
138 srcprop.doc stackchk.doc stacks.doc stime.doc strings.doc strop.doc \
5dacb21f 139 strorder.doc strports.doc struct.doc symbols.doc threads.doc throw.doc \
dee01b01 140 values.doc variable.doc vectors.doc version.doc vports.doc weaks.doc
a3365d47 141
2ce88b54 142EXTRA_DOT_DOC_FILES = @EXTRA_DOT_DOC_FILES@
9515eae6 143
64c2db80
RB
144BUILT_SOURCES = cpp_err_symbols.c cpp_sig_symbols.c libpath.h \
145 version.h scmconfig.h \
cecb4a5e 146 $(DOT_X_FILES) $(EXTRA_DOT_X_FILES) guile.texi
9515eae6 147
438b2738 148EXTRA_libguile_la_SOURCES = _scm.h \
60a059e6 149 alloca.c inet_aton.c memmove.c putenv.c strerror.c \
5dacb21f 150 dynl.c regex-posix.c \
438b2738 151 filesys.c posix.c net_db.c socket.c \
5dacb21f 152 ramap.c unif.c debug-malloc.c mkstemp.c \
b4e15479 153 win32-uname.c win32-dirent.c win32-socket.c
7bfd3b9e 154
413a1367
ML
155## delete guile-snarf.awk from the installation bindir, in case it's
156## lingering there due to an earlier guile version not having been
157## wiped out.
158install-exec-hook:
b27b814d 159 rm -f $(DESTDIR)$(bindir)/guile-snarf.awk
413a1367 160
7bfd3b9e 161## This is kind of nasty... there are ".c" files that we don't want to
1be6b49c
ML
162## compile, since they are #included. So instead we list them here.
163## Perhaps we can deal with them normally once the merge seems to be
164## working.
340c49bf
MV
165noinst_HEADERS = num2integral.i.c num2float.i.c convert.i.c \
166 win32-uname.h win32-dirent.h win32-socket.h \
167 private-gc.h
7bfd3b9e 168
78bda5f3 169libguile_la_DEPENDENCIES = @LIBLOBJS@
45cf70fa 170libguile_la_LIBADD = @LIBLOBJS@ ../libguile-ltdl/libguile-ltdl.la $(THREAD_LIBS_LOCAL)
94b1762d 171libguile_la_LDFLAGS = -version-info @LIBGUILE_INTERFACE_CURRENT@:@LIBGUILE_INTERFACE_REVISION@:@LIBGUILE_INTERFACE_AGE@ -export-dynamic -no-undefined
733943b9 172
54f16aec 173# These are headers visible as <guile/mumble.h>
ee2a8b9b
JB
174pkginclude_HEADERS = gh.h
175
733943b9 176# These are headers visible as <libguile/mumble.h>.
5380de6b 177modincludedir = $(includedir)/libguile
03416a99 178modinclude_HEADERS = __scm.h alist.h arbiters.h async.h backtrace.h boolean.h \
340c49bf 179 chars.h continuations.h convert.h debug.h \
29717c89 180 debug-malloc.h threads-plugin.h null-threads.h pthread-threads.h \
c70de3c7
MV
181 deprecation.h deprecated.h dynl.h dynwind.h environments.h eq.h \
182 error.h eval.h \
756414cf
MD
183 evalext.h extensions.h feature.h filesys.h fluids.h fports.h futures.h \
184 gc.h gdb_interface.h gdbint.h \
9b7ee9d8
MV
185 goops.h gsubr.h guardians.h hash.h hashtab.h hooks.h init.h \
186 inline.h ioext.h \
03416a99
KN
187 iselect.h keywords.h lang.h list.h load.h macros.h mallocs.h modules.h \
188 net_db.h numbers.h objects.h objprop.h options.h pairs.h ports.h posix.h \
189 regex-posix.h print.h procprop.h procs.h properties.h random.h ramap.h \
b0e5fd8c 190 rdelim.h read.h root.h rw.h scmsigs.h validate.h script.h simpos.h smob.h \
03416a99 191 snarf.h socket.h sort.h srcprop.h stackchk.h stacks.h stime.h strings.h \
6b41a313 192 strop.h strorder.h strports.h struct.h symbols.h tags.h threads.h \
93ff93f6 193 throw.h unif.h values.h variable.h vectors.h vports.h weaks.h
4725c298 194
93ff93f6 195nodist_modinclude_HEADERS = version.h scmconfig.h
733943b9 196
604a672e
TTN
197bin_SCRIPTS = guile-snarf
198
f94b6524
TTN
199# We can re-enable install for some of these if/when they are documented
200# and people feel like maintaining them. For now, this is not the case.
604a672e 201noinst_SCRIPTS = guile-doc-snarf guile-snarf-docs guile-func-name-check
adb75a41 202
41973b48
MV
203EXTRA_DIST = ChangeLog-gh ChangeLog-scm ChangeLog-threads \
204 ChangeLog-1996-1999 ChangeLog-2000 cpp_signal.c \
a3451a59
MV
205 cpp_errno.c cpp_err_symbols.in cpp_err_symbols.c \
206 cpp_sig_symbols.c cpp_sig_symbols.in cpp_cnvt.awk \
eaf94f77
MV
207 c-tokenize.lex threads-plugin.c version.h.in pthread-threads.c \
208 scmconfig.h.top
c99f9605
ML
209# $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES) \
210# guile-procedures.txt guile.texi
733943b9 211
d8a20ddb
RB
212## We use @-...-@ as the substitution brackets here, instead of the
213## usual @...@, so autoconf doesn't go and substitute the values
214## directly into the left-hand sides of the sed substitutions. *sigh*
215version.h: version.h.in
9bc4701c 216 sed < $< > $@.tmp \
d8a20ddb
RB
217 -e s:@-GUILE_MAJOR_VERSION-@:${GUILE_MAJOR_VERSION}: \
218 -e s:@-GUILE_MINOR_VERSION-@:${GUILE_MINOR_VERSION}: \
219 -e s:@-GUILE_MICRO_VERSION-@:${GUILE_MICRO_VERSION}:
220 mv $@.tmp $@
221
fef07353 222## FIXME: Consider using timestamp file, to avoid unnecessary rebuilds.
90ff3ec5 223libpath.h: $(srcdir)/Makefile.in $(top_builddir)/config.status
54f16aec 224 @echo "Generating libpath.h..."
e151bee6
JB
225 @rm -f libpath.tmp
226 @echo '/* generated by Makefile */' > libpath.tmp
227 @echo '#define SCM_PKGDATA_DIR "$(pkgdatadir)"' >> libpath.tmp
d8a20ddb 228 @echo '#define SCM_LIBRARY_DIR "$(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)"'>>libpath.tmp
e151bee6
JB
229 @echo '#define SCM_SITE_DIR "$(pkgdatadir)/site"' >> libpath.tmp
230 @echo '#define SCM_BUILD_INFO { \' >> libpath.tmp
231 @echo ' { "srcdir", "'"`cd @srcdir@; pwd`"'" }, \' >> libpath.tmp
c565712c 232 @echo ' { "top_srcdir", "@top_srcdir_absolute@" }, \' >> libpath.tmp
e151bee6
JB
233 @echo ' { "prefix", "@prefix@" }, \' >> libpath.tmp
234 @echo ' { "exec_prefix", "@exec_prefix@" }, \' >> libpath.tmp
235 @echo ' { "bindir", "@bindir@" }, \' >> libpath.tmp
236 @echo ' { "sbindir", "@sbindir@" }, \' >> libpath.tmp
237 @echo ' { "libexecdir", "@libexecdir@" }, \' >> libpath.tmp
238 @echo ' { "datadir", "@datadir@" }, \' >> libpath.tmp
239 @echo ' { "sysconfdir", "@sysconfdir@" }, \' >> libpath.tmp
240 @echo ' { "sharedstatedir", "@sharedstatedir@" }, \' >> libpath.tmp
241 @echo ' { "localstatedir", "@localstatedir@" }, \' >> libpath.tmp
242 @echo ' { "libdir", "@libdir@" }, \' >> libpath.tmp
243 @echo ' { "infodir", "@infodir@" }, \' >> libpath.tmp
244 @echo ' { "mandir", "@mandir@" }, \' >> libpath.tmp
245 @echo ' { "includedir", "@includedir@" }, \' >> libpath.tmp
246 @echo ' { "pkgdatadir", "$(datadir)/@PACKAGE@" }, \' >> libpath.tmp
247 @echo ' { "pkglibdir", "$(libdir)/@PACKAGE@" }, \' >> libpath.tmp
248 @echo ' { "pkgincludedir", "$(includedir)/@PACKAGE@" }, \' \
249 >> libpath.tmp
b6fae158 250 @echo ' { "guileversion", "@GUILE_VERSION@" }, \' >> libpath.tmp
54f16aec
TTN
251 @echo ' { "libguileinterface", "@LIBGUILE_INTERFACE@" }, \' \
252 >> libpath.tmp
30dda257 253 @echo ' { "LIBS", "@GUILE_LIBS@" }, \' >> libpath.tmp
54f16aec 254 @echo ' { "buildstamp", "'"`date`"'" }, \' >> libpath.tmp
e151bee6
JB
255 @echo '}' >> libpath.tmp
256 @mv libpath.tmp libpath.h
733943b9 257
3dc81fba 258
e9c3d3f9
TTN
259snarfcppopts = $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
260
3dc81fba 261SUFFIXES = .x .doc
733943b9 262.c.x:
2c7a286a 263 ./guile-snarf -o $@ $< $(snarfcppopts)
c99f9605
ML
264.c.doc:
265 -(test -n "${AWK+set}" || AWK="@AWK@"; ${AWK} -f ./guile-func-name-check $<)
e9c3d3f9 266 (./guile-snarf-docs $(snarfcppopts) $< | \
af68e5e5 267 ./guile_filter_doc_snarfage$(EXEEXT) --filter-snarfage) > $@ || { rm $@; false; }
733943b9 268
c99f9605
ML
269$(DOT_X_FILES) $(EXTRA_DOT_DOC_FILES): snarf.h guile-snarf.in
270
94b1762d 271$(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): snarf.h guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
66418d34 272
faf6a29b
MV
273error.x: cpp_err_symbols.c
274posix.x: cpp_sig_symbols.c
275load.x: libpath.h
276
58ed8bc6 277include $(top_srcdir)/am/pre-inst-guile
cecb4a5e 278
f8241358 279alldotdocfiles = $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES)
b32fca0f 280snarf2checkedtexi = GUILE="$(GUILE_FOR_BUILD)" $(top_srcdir)/scripts/snarf-check-and-output-texi
f8241358
TTN
281dotdoc2texi = cat $(alldotdocfiles) | $(snarf2checkedtexi)
282
2e945bcc 283guile.texi: $(alldotdocfiles) guile$(EXEEXT)
f8241358
TTN
284 $(dotdoc2texi) --manual > $@ || { rm $@; false; }
285
2e945bcc 286guile-procedures.texi: $(alldotdocfiles) guile$(EXEEXT)
f8241358 287 $(dotdoc2texi) > $@ || { rm $@; false; }
9d29e990 288
9df3eecc
MV
289if HAVE_MAKEINFO
290
cecb4a5e 291guile-procedures.txt: guile-procedures.texi
9d29e990 292 rm -f $@
f7742034 293 makeinfo --force -o $@ guile-procedures.texi || test -f $@
4079f87e 294
9df3eecc
MV
295else
296
297guile-procedures.txt: guile-procedures.texi
f7742034 298 cp guile-procedures.texi $@
9df3eecc
MV
299
300endif
301
30e3be5a 302c-tokenize.c: c-tokenize.lex
47ac1e47 303 flex -t $(srcdir)/c-tokenize.lex > $@ || { rm $@; false; }
30e3be5a 304
d8a20ddb 305schemelibdir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)
8dc9439f 306schemelib_DATA = guile-procedures.txt
4079f87e 307
733943b9
TT
308## Add -MG to make the .x magic work with auto-dep code.
309MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
ee78fbb0 310
a9c093e2 311cpp_err_symbols.c: cpp_err_symbols.in cpp_cnvt.awk
a0e90145 312 $(AWK) -f $(srcdir)/cpp_cnvt.awk < $(srcdir)/cpp_err_symbols.in > \
593d151f
JB
313 cpp_err_symbols.tmp
314 mv cpp_err_symbols.tmp cpp_err_symbols.c
ee78fbb0 315
a9c093e2 316cpp_sig_symbols.c: cpp_sig_symbols.in cpp_cnvt.awk
a0e90145 317 $(AWK) -f $(srcdir)/cpp_cnvt.awk < $(srcdir)/cpp_sig_symbols.in > \
593d151f
JB
318 cpp_sig_symbols.tmp
319 mv cpp_sig_symbols.tmp cpp_sig_symbols.c
67ec3667 320
a0e90145 321## Create a new version of the cpp_sig_symbols.in file, including all SIGXXX
67ec3667
GH
322## macros defined on this platform.
323check_signals:
324 gcc -undef -dM -E $(srcdir)/cpp_signal.c | egrep ' SIG[A-Z]+' \
325 | cut -f2 -d' ' | sort > cpp_sig_symbols_here
a0e90145
JB
326 diff -u $(srcdir)/cpp_sig_symbols.in cpp_sig_symbols_here \
327 | egrep '^\+S' \
67ec3667
GH
328 | cut -c2- > cpp_sig_symbols_diff
329 if test -s cpp_sig_symbols_diff ; then \
a0e90145 330 cat $(srcdir)/cpp_sig_symbols.in cpp_sig_symbols_diff \
67ec3667
GH
331 | sort > cpp_sig_symbols_new ;\
332 echo "cpp_sig_symbols_new has the following additions:" ;\
333 cat cpp_sig_symbols_diff ;\
334 else echo "No new symbols found."; \
335 fi
336
a0e90145 337## Likewise for cpp_err_symbols.in.
67ec3667
GH
338check_errnos:
339 gcc -undef -dM -E $(srcdir)/cpp_errno.c | egrep ' E.+' \
340 | cut -f2 -d' ' | sort > cpp_err_symbols_here
a0e90145
JB
341 diff -u $(srcdir)/cpp_err_symbols.in cpp_err_symbols_here \
342 | egrep '^\+E' \
67ec3667
GH
343 | cut -c2- > cpp_err_symbols_diff
344 if test -s cpp_err_symbols_diff ; then \
a0e90145 345 cat $(srcdir)/cpp_err_symbols.in cpp_err_symbols_diff \
67ec3667
GH
346 | sort > cpp_err_symbols_new ;\
347 echo "cpp_err_symbols_new has the following additions:" ;\
348 cat cpp_err_symbols_diff ;\
349 else echo "No new symbols found."; \
350 fi
351
ad6b30a0
TP
352MOSTLYCLEANFILES = \
353 cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new \
d8a20ddb
RB
354 cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new \
355 version.h version.h.tmp \
356 scmconfig.h scmconfig.h.tmp
ad6b30a0 357
cecb4a5e 358CLEANFILES = libpath.h *.x *.doc guile-procedures.txt guile-procedures.texi guile.texi
ee0c0e03
ML
359
360MAINTAINERCLEANFILES = c-tokenize.c