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