Makefile.am 17 KB

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