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