renumber VM opcodes
[bpt/guile.git] / libguile / Makefile.am
CommitLineData
733943b9 1## Process this file with Automake to create Makefile.in
2764bd99 2##
e2c2a699 3## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
2764bd99
JB
4##
5## This file is part of GUILE.
54f16aec 6##
53befeb7
NJ
7## GUILE is free software; you can redistribute it and/or modify it
8## under the terms of the GNU Lesser General Public License as
9## published by the Free Software Foundation; either version 3, or
2764bd99 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
53befeb7 15## GNU Lesser General Public License for more details.
54f16aec 16##
53befeb7
NJ
17## You should have received a copy of the GNU Lesser General Public
18## License along with GUILE; see the file COPYING.LESSER. If not,
19## write to the Free Software Foundation, Inc., 51 Franklin Street,
20## Fifth 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'.
442f3f20 35AM_CPPFLAGS = -DBUILDING_LIBGUILE=1 -I$(top_srcdir) -I$(top_builddir) \
47871d5a 36 -I$(top_srcdir)/lib -I$(top_builddir)/lib
6caac03c 37
75c242a2 38AM_CFLAGS = $(LIBFFI_CFLAGS) $(GCC_CFLAGS) $(CFLAG_VISIBILITY)
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
756e8a3a 46lib_LTLIBRARIES = libguile.la
f94b6524 47bin_PROGRAMS = guile
b32fca0f 48
64c2db80
RB
49noinst_PROGRAMS = guile_filter_doc_snarfage gen-scmconfig
50
51gen_scmconfig_SOURCES = gen-scmconfig.c
52
53## Override default rule; this should be compiled for BUILD host.
54## For some reason, OBJEXT does not include the dot
55gen-scmconfig.$(OBJEXT): gen-scmconfig.c
56 if [ "$(cross_compiling)" = "yes" ]; then \
47871d5a 57 $(CC_FOR_BUILD) $(DEFS) $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) -c -o $@ $<; \
64c2db80
RB
58 else \
59 $(COMPILE) -c -o $@ $<; \
60 fi
61
2e945bcc
SJ
62## Override default rule; this should run on BUILD host.
63gen-scmconfig$(EXEEXT): $(gen_scmconfig_OBJECTS) $(gen_scmconfig_DEPENDENCIES)
64 @rm -f gen-scmconfig$(EXEEXT)
65 if [ "$(cross_compiling)" = "yes" ]; then \
66 $(CCLD_FOR_BUILD) -o $@ $(gen_scmconfig_OBJECTS); \
67 else \
68 $(LINK) $(gen_scmconfig_OBJECTS) $(LDADD) $(LIBS); \
69 fi
70
71scmconfig.h: ${top_builddir}/config.h gen-scmconfig$(EXEEXT)
64c2db80 72 rm -f scmconfig.h.tmp
eaf94f77 73 cat $(srcdir)/scmconfig.h.top > scmconfig.h.tmp
2e945bcc 74 ./gen-scmconfig$(EXEEXT) >> scmconfig.h.tmp
64c2db80
RB
75 chmod 444 scmconfig.h.tmp
76 rm -f scmconfig.h
77 mv scmconfig.h.tmp scmconfig.h
78
b32fca0f
MV
79guile_filter_doc_snarfage_SOURCES = c-tokenize.c
80
81## Override default rule; this should be compiled for BUILD host.
82## For some reason, OBJEXT does not include the dot
83c-tokenize.$(OBJEXT): c-tokenize.c
84 if [ "$(cross_compiling)" = "yes" ]; then \
47871d5a 85 $(CC_FOR_BUILD) $(DEFS) $(AM_CPPFLAGS) -c -o $@ $<; \
b32fca0f 86 else \
4ea57d5b 87 $(COMPILE) -c -o $@ $<; \
b32fca0f
MV
88 fi
89
90## Override default rule; this should run on BUILD host.
91guile_filter_doc_snarfage$(EXEEXT): $(guile_filter_doc_snarfage_OBJECTS) $(guile_filter_doc_snarfage_DEPENDENCIES)
92 @rm -f guile_filter_doc_snarfage$(EXEEXT)
93 if [ "$(cross_compiling)" = "yes" ]; then \
94 $(CCLD_FOR_BUILD) -o $@ $(guile_filter_doc_snarfage_OBJECTS); \
95 else \
96 $(LINK) $(guile_filter_doc_snarfage_OBJECTS) $(LDADD) $(LIBS); \
97 fi
98
549436de
JB
99
100guile_SOURCES = guile.c
bfb2e113 101guile_CFLAGS = $(GUILE_CFLAGS) $(AM_CFLAGS)
8f99e3f3 102guile_LDADD = libguile.la
de7d32d0 103guile_LDFLAGS = $(GUILE_CFLAGS)
5bbc5359 104
bfb2e113 105libguile_la_CFLAGS = $(GUILE_CFLAGS) $(AM_CFLAGS)
ee2a8b9b 106
a4a0d399
AW
107libguile_la_SOURCES = \
108 alist.c \
109 arbiters.c \
c53c0893 110 array-handle.c \
5d1b3b2d 111 array-map.c \
2fa901a5 112 arrays.c \
a4a0d399
AW
113 async.c \
114 backtrace.c \
115 boolean.c \
cf396142 116 bitvectors.c \
a4a0d399
AW
117 bytevectors.c \
118 chars.c \
119 continuations.c \
120 debug.c \
121 deprecated.c \
122 deprecation.c \
123 discouraged.c \
124 dynwind.c \
125 eq.c \
126 error.c \
127 eval.c \
128 evalext.c \
129 extensions.c \
130 feature.c \
131 fluids.c \
e2c2a699 132 foreign.c \
a4a0d399
AW
133 fports.c \
134 frames.c \
a4a0d399 135 gc-malloc.c \
a4a0d399 136 gc.c \
a4a0d399
AW
137 gdbint.c \
138 gettext.c \
1030b450 139 generalized-arrays.c \
f332e957 140 generalized-vectors.c \
a4a0d399
AW
141 goops.c \
142 gsubr.c \
143 guardians.c \
144 hash.c \
145 hashtab.c \
146 hooks.c \
756e8a3a 147 i18n.c \
a4a0d399
AW
148 init.c \
149 inline.c \
150 instructions.c \
151 ioext.c \
152 keywords.c \
153 lang.c \
154 list.c \
155 load.c \
156 macros.c \
157 mallocs.c \
b7742c6b 158 memoize.c \
a4a0d399
AW
159 modules.c \
160 null-threads.c \
161 numbers.c \
162 objcodes.c \
a4a0d399
AW
163 objprop.c \
164 options.c \
165 pairs.c \
166 ports.c \
167 print.c \
168 procprop.c \
169 procs.c \
170 programs.c \
7b893819 171 promises.c \
a4a0d399
AW
172 properties.c \
173 r6rs-ports.c \
a4a0d399
AW
174 random.c \
175 rdelim.c \
176 read.c \
177 root.c \
178 rw.c \
179 scmsigs.c \
180 script.c \
181 simpos.c \
182 smob.c \
183 sort.c \
184 srcprop.c \
185 srfi-13.c \
186 srfi-14.c \
187 srfi-4.c \
188 stackchk.c \
189 stacks.c \
190 stime.c \
191 strings.c \
192 strorder.c \
193 strports.c \
194 struct.c \
195 symbols.c \
196 threads.c \
197 throw.c \
0f458a37 198 trees.c \
476b894c 199 uniform.c \
a4a0d399
AW
200 values.c \
201 variable.c \
202 vectors.c \
203 version.c \
204 vm.c \
205 vports.c \
206 weaks.c
83495480 207
a4a0d399
AW
208DOT_X_FILES = \
209 alist.x \
210 arbiters.x \
c53c0893 211 array-handle.x \
5d1b3b2d 212 array-map.x \
2fa901a5 213 arrays.x \
a4a0d399
AW
214 async.x \
215 backtrace.x \
216 boolean.x \
cf396142 217 bitvectors.x \
a4a0d399
AW
218 bytevectors.x \
219 chars.x \
220 continuations.x \
221 debug.x \
222 deprecated.x \
223 deprecation.x \
224 discouraged.x \
225 dynl.x \
226 dynwind.x \
227 eq.x \
228 error.x \
229 eval.x \
230 evalext.x \
231 extensions.x \
232 feature.x \
233 fluids.x \
e2c2a699 234 foreign.x \
a4a0d399 235 fports.x \
a4a0d399 236 gc-malloc.x \
a4a0d399
AW
237 gc.x \
238 gettext.x \
1030b450 239 generalized-arrays.x \
f332e957 240 generalized-vectors.x \
a4a0d399
AW
241 goops.x \
242 gsubr.x \
243 guardians.x \
244 hash.x \
245 hashtab.x \
246 hooks.x \
247 i18n.x \
248 init.x \
249 ioext.x \
250 keywords.x \
251 lang.x \
252 list.x \
253 load.x \
254 macros.x \
255 mallocs.x \
b7742c6b 256 memoize.x \
a4a0d399
AW
257 modules.x \
258 numbers.x \
a4a0d399
AW
259 objprop.x \
260 options.x \
261 pairs.x \
262 ports.x \
263 print.x \
264 procprop.x \
265 procs.x \
7b893819 266 promises.x \
a4a0d399
AW
267 properties.x \
268 r6rs-ports.x \
a4a0d399
AW
269 random.x \
270 rdelim.x \
271 read.x \
272 root.x \
273 rw.x \
274 scmsigs.x \
275 script.x \
276 simpos.x \
277 smob.x \
278 sort.x \
279 srcprop.x \
280 srfi-13.x \
281 srfi-14.x \
282 srfi-4.x \
283 stackchk.x \
284 stacks.x \
285 stime.x \
286 strings.x \
287 strorder.x \
288 strports.x \
289 struct.x \
290 symbols.x \
291 threads.x \
292 throw.x \
0f458a37 293 trees.x \
476b894c 294 uniform.x \
a4a0d399
AW
295 values.x \
296 variable.x \
297 vectors.x \
298 version.x \
299 vports.x \
300 weaks.x
8bee78b3 301
83495480
AW
302# vm-related snarfs
303DOT_X_FILES += frames.x instructions.x objcodes.x programs.x vm.x
304
e9e225e5 305EXTRA_DOT_X_FILES = @EXTRA_DOT_X_FILES@
8bee78b3 306
a4a0d399
AW
307DOT_DOC_FILES = \
308 alist.doc \
309 arbiters.doc \
c53c0893 310 array-handle.doc \
5d1b3b2d 311 array-map.doc \
2fa901a5 312 arrays.doc \
a4a0d399
AW
313 async.doc \
314 backtrace.doc \
315 boolean.doc \
cf396142 316 bitvectors.doc \
a4a0d399
AW
317 bytevectors.doc \
318 chars.doc \
319 continuations.doc \
320 debug.doc \
321 deprecated.doc \
322 deprecation.doc \
323 discouraged.doc \
324 dynl.doc \
325 dynwind.doc \
326 eq.doc \
327 error.doc \
328 eval.doc \
329 evalext.doc \
330 extensions.doc \
331 feature.doc \
332 fluids.doc \
e2c2a699 333 foreign.doc \
a4a0d399 334 fports.doc \
a4a0d399 335 gc-malloc.doc \
a4a0d399
AW
336 gc.doc \
337 gettext.doc \
1030b450 338 generalized-arrays.doc \
476b894c 339 generalized-vectors.doc \
a4a0d399
AW
340 goops.doc \
341 gsubr.doc \
342 guardians.doc \
343 hash.doc \
344 hashtab.doc \
345 hooks.doc \
346 i18n.doc \
347 init.doc \
348 ioext.doc \
349 keywords.doc \
350 lang.doc \
351 list.doc \
352 load.doc \
353 macros.doc \
354 mallocs.doc \
b7742c6b 355 memoize.doc \
a4a0d399
AW
356 modules.doc \
357 numbers.doc \
a4a0d399
AW
358 objprop.doc \
359 options.doc \
360 pairs.doc \
361 ports.doc \
362 print.doc \
363 procprop.doc \
364 procs.doc \
7b893819 365 promises.doc \
a4a0d399
AW
366 properties.doc \
367 r6rs-ports.doc \
a4a0d399
AW
368 random.doc \
369 rdelim.doc \
370 read.doc \
371 root.doc \
372 rw.doc \
373 scmsigs.doc \
374 script.doc \
375 simpos.doc \
376 smob.doc \
377 sort.doc \
378 srcprop.doc \
379 srfi-13.doc \
380 srfi-14.doc \
381 srfi-4.doc \
382 stackchk.doc \
383 stacks.doc \
384 stime.doc \
385 strings.doc \
386 strorder.doc \
387 strports.doc \
388 struct.doc \
389 symbols.doc \
390 threads.doc \
391 throw.doc \
0f458a37 392 trees.doc \
476b894c 393 uniform.doc \
a4a0d399
AW
394 values.doc \
395 variable.doc \
396 vectors.doc \
397 version.doc \
398 vports.doc \
399 weaks.doc
a3365d47 400
2ce88b54 401EXTRA_DOT_DOC_FILES = @EXTRA_DOT_DOC_FILES@
9515eae6 402
83495480
AW
403DOT_I_FILES = vm-i-system.i vm-i-scheme.i vm-i-loader.i
404
405.c.i:
5c146363 406 $(GREP) '^VM_DEFINE' $< > $@
83495480 407
64c2db80
RB
408BUILT_SOURCES = cpp_err_symbols.c cpp_sig_symbols.c libpath.h \
409 version.h scmconfig.h \
83495480 410 $(DOT_I_FILES) $(DOT_X_FILES) $(EXTRA_DOT_X_FILES)
9515eae6 411
f731051e 412EXTRA_libguile_la_SOURCES = _scm.h \
c32b39b9 413 memmove.c strerror.c \
f731051e
MV
414 dynl.c regex-posix.c \
415 filesys.c posix.c net_db.c socket.c \
29627818 416 debug-malloc.c mkstemp.c \
b89c4943
LC
417 win32-uname.c win32-dirent.c win32-socket.c \
418 locale-categories.h
7bfd3b9e 419
413a1367
ML
420## delete guile-snarf.awk from the installation bindir, in case it's
421## lingering there due to an earlier guile version not having been
422## wiped out.
423install-exec-hook:
b27b814d 424 rm -f $(DESTDIR)$(bindir)/guile-snarf.awk
413a1367 425
7bfd3b9e 426## This is kind of nasty... there are ".c" files that we don't want to
1be6b49c
ML
427## compile, since they are #included. So instead we list them here.
428## Perhaps we can deal with them normally once the merge seems to be
429## working.
4b126598 430noinst_HEADERS = conv-integer.i.c conv-uinteger.i.c \
71560395 431 ieee-754.h \
71560395 432 srfi-14.i.c \
06f9c814 433 quicksort.i.c \
340c49bf 434 win32-uname.h win32-dirent.h win32-socket.h \
981ff600 435 private-gc.h private-options.h
7bfd3b9e 436
83495480
AW
437# vm instructions
438noinst_HEADERS += vm-engine.c vm-i-system.c vm-i-scheme.c vm-i-loader.c
439
78bda5f3 440libguile_la_DEPENDENCIES = @LIBLOBJS@
f29ded4b
LC
441libguile_la_LIBADD = \
442 @LIBLOBJS@ $(gnulib_library) $(LTLIBGMP) \
443 $(LTLIBUNISTRING) $(LTLIBICONV)
76e8a758 444libguile_la_LDFLAGS = \
75c242a2 445 @LTLIBINTL@ $(LIBFFI_LIBS) $(INET_NTOP_LIB) $(INET_PTON_LIB) \
76e8a758
LC
446 -version-info @LIBGUILE_INTERFACE_CURRENT@:@LIBGUILE_INTERFACE_REVISION@:@LIBGUILE_INTERFACE_AGE@ \
447 -export-dynamic -no-undefined \
448 $(GNU_LD_FLAGS)
733943b9 449
9af080f7
LC
450if HAVE_LD_VERSION_SCRIPT
451
452libguile_la_LDFLAGS += -Wl,--version-script="$(srcdir)/libguile.map"
453
454endif HAVE_LD_VERSION_SCRIPT
455
456
54f16aec 457# These are headers visible as <guile/mumble.h>
89bc270d 458pkginclude_HEADERS =
ee2a8b9b 459
733943b9 460# These are headers visible as <libguile/mumble.h>.
5380de6b 461modincludedir = $(includedir)/libguile
a4a0d399
AW
462modinclude_HEADERS = \
463 __scm.h \
464 alist.h \
465 arbiters.h \
c53c0893 466 array-handle.h \
5d1b3b2d 467 array-map.h \
2fa901a5 468 arrays.h \
a4a0d399
AW
469 async.h \
470 backtrace.h \
1c44468d 471 bdw-gc.h \
a4a0d399 472 boolean.h \
cf396142 473 bitvectors.h \
a4a0d399
AW
474 bytevectors.h \
475 chars.h \
476 continuations.h \
477 debug-malloc.h \
478 debug.h \
479 deprecated.h \
480 deprecation.h \
481 discouraged.h \
482 dynl.h \
483 dynwind.h \
484 eq.h \
485 error.h \
486 eval.h \
487 evalext.h \
488 extensions.h \
489 feature.h \
490 filesys.h \
491 fluids.h \
e2c2a699 492 foreign.h \
a4a0d399
AW
493 fports.h \
494 frames.h \
a4a0d399
AW
495 gc.h \
496 gdb_interface.h \
497 gdbint.h \
498 gettext.h \
1030b450 499 generalized-arrays.h \
f332e957 500 generalized-vectors.h \
a4a0d399
AW
501 goops.h \
502 gsubr.h \
503 guardians.h \
504 hash.h \
505 hashtab.h \
506 hooks.h \
507 i18n.h \
508 init.h \
509 inline.h \
510 instructions.h \
511 ioext.h \
512 iselect.h \
513 keywords.h \
514 lang.h \
515 list.h \
516 load.h \
517 macros.h \
518 mallocs.h \
b7742c6b 519 memoize.h \
a4a0d399
AW
520 modules.h \
521 net_db.h \
522 null-threads.h \
523 numbers.h \
524 objcodes.h \
a4a0d399
AW
525 objprop.h \
526 options.h \
527 pairs.h \
528 ports.h \
529 posix.h \
530 print.h \
531 procprop.h \
532 procs.h \
533 programs.h \
7b893819 534 promises.h \
a4a0d399
AW
535 properties.h \
536 pthread-threads.h \
537 r6rs-ports.h \
a4a0d399
AW
538 random.h \
539 rdelim.h \
540 read.h \
541 regex-posix.h \
542 root.h \
543 rw.h \
544 scmsigs.h \
545 script.h \
546 simpos.h \
547 smob.h \
548 snarf.h \
549 socket.h \
550 sort.h \
551 srcprop.h \
552 srfi-13.h \
553 srfi-14.h \
554 srfi-4.h \
555 stackchk.h \
556 stacks.h \
557 stime.h \
558 strings.h \
559 strorder.h \
560 strports.h \
561 struct.h \
562 symbols.h \
563 tags.h \
564 threads.h \
565 throw.h \
0f458a37 566 trees.h \
a4a0d399 567 validate.h \
476b894c 568 uniform.h \
a4a0d399
AW
569 values.h \
570 variable.h \
571 vectors.h \
a4a0d399
AW
572 vm-engine.h \
573 vm-expand.h \
574 vm.h \
575 vports.h \
576 weaks.h
83495480 577
93ff93f6 578nodist_modinclude_HEADERS = version.h scmconfig.h
733943b9 579
604a672e
TTN
580bin_SCRIPTS = guile-snarf
581
f94b6524
TTN
582# We can re-enable install for some of these if/when they are documented
583# and people feel like maintaining them. For now, this is not the case.
604a672e 584noinst_SCRIPTS = guile-doc-snarf guile-snarf-docs guile-func-name-check
adb75a41 585
89bc270d 586EXTRA_DIST = ChangeLog-scm ChangeLog-threads \
61db429e
LC
587 ChangeLog-1996-1999 ChangeLog-2000 ChangeLog-2008 cpp_signal.c \
588 cpp_errno.c cpp_err_symbols.in cpp_err_symbols.c \
589 cpp_sig_symbols.c cpp_sig_symbols.in cpp_cnvt.awk \
590 c-tokenize.lex version.h.in \
f49dbcad 591 scmconfig.h.top libgettext.h unidata_to_charset.pl libguile.map
c99f9605
ML
592# $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES) \
593# guile-procedures.txt guile.texi
733943b9 594
d8a20ddb
RB
595## We use @-...-@ as the substitution brackets here, instead of the
596## usual @...@, so autoconf doesn't go and substitute the values
597## directly into the left-hand sides of the sed substitutions. *sigh*
c66fe8a9 598version.h: version.h.in $(top_builddir)/config.status
8ab3d8a0 599 sed < $(srcdir)/version.h.in > $@.tmp \
d8a20ddb
RB
600 -e s:@-GUILE_MAJOR_VERSION-@:${GUILE_MAJOR_VERSION}: \
601 -e s:@-GUILE_MINOR_VERSION-@:${GUILE_MINOR_VERSION}: \
602 -e s:@-GUILE_MICRO_VERSION-@:${GUILE_MICRO_VERSION}:
603 mv $@.tmp $@
604
fef07353 605## FIXME: Consider using timestamp file, to avoid unnecessary rebuilds.
90ff3ec5 606libpath.h: $(srcdir)/Makefile.in $(top_builddir)/config.status
54f16aec 607 @echo "Generating libpath.h..."
e151bee6
JB
608 @rm -f libpath.tmp
609 @echo '/* generated by Makefile */' > libpath.tmp
610 @echo '#define SCM_PKGDATA_DIR "$(pkgdatadir)"' >> libpath.tmp
d8a20ddb 611 @echo '#define SCM_LIBRARY_DIR "$(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)"'>>libpath.tmp
e151bee6 612 @echo '#define SCM_SITE_DIR "$(pkgdatadir)/site"' >> libpath.tmp
28af5ee5
AW
613 @echo '#define SCM_LIB_DIR "$(libdir)"' >> libpath.tmp
614 @echo '#define SCM_EXTENSIONS_DIR "$(pkglibdir)/$(GUILE_EFFECTIVE_VERSION)/extensions"' >> libpath.tmp
5b197db8
AW
615 @echo '#define SCM_CCACHE_DIR "$(pkglibdir)/$(GUILE_EFFECTIVE_VERSION)/ccache"' >> libpath.tmp
616 @echo '#define SCM_EFFECTIVE_VERSION "$(GUILE_EFFECTIVE_VERSION)"' >> libpath.tmp
e151bee6
JB
617 @echo '#define SCM_BUILD_INFO { \' >> libpath.tmp
618 @echo ' { "srcdir", "'"`cd @srcdir@; pwd`"'" }, \' >> libpath.tmp
c565712c 619 @echo ' { "top_srcdir", "@top_srcdir_absolute@" }, \' >> libpath.tmp
e151bee6
JB
620 @echo ' { "prefix", "@prefix@" }, \' >> libpath.tmp
621 @echo ' { "exec_prefix", "@exec_prefix@" }, \' >> libpath.tmp
622 @echo ' { "bindir", "@bindir@" }, \' >> libpath.tmp
623 @echo ' { "sbindir", "@sbindir@" }, \' >> libpath.tmp
624 @echo ' { "libexecdir", "@libexecdir@" }, \' >> libpath.tmp
625 @echo ' { "datadir", "@datadir@" }, \' >> libpath.tmp
626 @echo ' { "sysconfdir", "@sysconfdir@" }, \' >> libpath.tmp
627 @echo ' { "sharedstatedir", "@sharedstatedir@" }, \' >> libpath.tmp
628 @echo ' { "localstatedir", "@localstatedir@" }, \' >> libpath.tmp
629 @echo ' { "libdir", "@libdir@" }, \' >> libpath.tmp
5b197db8 630 @echo ' { "ccachedir", SCM_CCACHE_DIR }, \' >> libpath.tmp
e151bee6
JB
631 @echo ' { "infodir", "@infodir@" }, \' >> libpath.tmp
632 @echo ' { "mandir", "@mandir@" }, \' >> libpath.tmp
633 @echo ' { "includedir", "@includedir@" }, \' >> libpath.tmp
eb350124
AW
634 @echo ' { "pkgdatadir", "$(pkgdatadir)" }, \' >> libpath.tmp
635 @echo ' { "pkglibdir", "$(pkglibdir)" }, \' >> libpath.tmp
636 @echo ' { "pkgincludedir", "$(pkgincludedir)" }, \' \
e151bee6 637 >> libpath.tmp
28af5ee5 638 @echo ' { "extensionsdir", "$(pkglibdir)/$(GUILE_EFFECTIVE_VERSION)/extensions" }, \' >> libpath.tmp
b6fae158 639 @echo ' { "guileversion", "@GUILE_VERSION@" }, \' >> libpath.tmp
54f16aec
TTN
640 @echo ' { "libguileinterface", "@LIBGUILE_INTERFACE@" }, \' \
641 >> libpath.tmp
30dda257 642 @echo ' { "LIBS", "@GUILE_LIBS@" }, \' >> libpath.tmp
5bbc5359 643 @echo ' { "CFLAGS", "@GUILE_CFLAGS@" }, \' >> libpath.tmp
54f16aec 644 @echo ' { "buildstamp", "'"`date`"'" }, \' >> libpath.tmp
e151bee6
JB
645 @echo '}' >> libpath.tmp
646 @mv libpath.tmp libpath.h
733943b9 647
3dc81fba 648
47871d5a 649snarfcppopts = $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS)
e9c3d3f9 650
3dc81fba 651SUFFIXES = .x .doc
733943b9 652.c.x:
2c7a286a 653 ./guile-snarf -o $@ $< $(snarfcppopts)
c99f9605 654.c.doc:
23d72566 655 -$(AWK) -f ./guile-func-name-check $<
e9c3d3f9 656 (./guile-snarf-docs $(snarfcppopts) $< | \
af68e5e5 657 ./guile_filter_doc_snarfage$(EXEEXT) --filter-snarfage) > $@ || { rm $@; false; }
733943b9 658
23f2b9a3 659$(DOT_X_FILES) $(EXTRA_DOT_X_FILES): scmconfig.h snarf.h guile-snarf.in
c99f9605 660
23f2b9a3 661$(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): scmconfig.h snarf.h guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
66418d34 662
faf6a29b
MV
663error.x: cpp_err_symbols.c
664posix.x: cpp_sig_symbols.c
665load.x: libpath.h
666
f8241358 667alldotdocfiles = $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES)
e27f640a 668snarf2checkedtexi = GUILE_AUTO_COMPILE=0 $(top_builddir)/meta/uninstalled-env guile-tools snarf-check-and-output-texi
f8241358
TTN
669dotdoc2texi = cat $(alldotdocfiles) | $(snarf2checkedtexi)
670
2e945bcc 671guile.texi: $(alldotdocfiles) guile$(EXEEXT)
f8241358
TTN
672 $(dotdoc2texi) --manual > $@ || { rm $@; false; }
673
2e945bcc 674guile-procedures.texi: $(alldotdocfiles) guile$(EXEEXT)
f8241358 675 $(dotdoc2texi) > $@ || { rm $@; false; }
9d29e990 676
9df3eecc
MV
677if HAVE_MAKEINFO
678
cecb4a5e 679guile-procedures.txt: guile-procedures.texi
9d29e990 680 rm -f $@
f7742034 681 makeinfo --force -o $@ guile-procedures.texi || test -f $@
4079f87e 682
9df3eecc
MV
683else
684
685guile-procedures.txt: guile-procedures.texi
f7742034 686 cp guile-procedures.texi $@
9df3eecc
MV
687
688endif
689
30e3be5a 690c-tokenize.c: c-tokenize.lex
47ac1e47 691 flex -t $(srcdir)/c-tokenize.lex > $@ || { rm $@; false; }
30e3be5a 692
d8a20ddb 693schemelibdir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)
8dc9439f 694schemelib_DATA = guile-procedures.txt
4079f87e 695
733943b9 696## Add -MG to make the .x magic work with auto-dep code.
47871d5a 697MKDEP = gcc -M -MG $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS)
ee78fbb0 698
a9c093e2 699cpp_err_symbols.c: cpp_err_symbols.in cpp_cnvt.awk
a0e90145 700 $(AWK) -f $(srcdir)/cpp_cnvt.awk < $(srcdir)/cpp_err_symbols.in > \
593d151f
JB
701 cpp_err_symbols.tmp
702 mv cpp_err_symbols.tmp cpp_err_symbols.c
ee78fbb0 703
a9c093e2 704cpp_sig_symbols.c: cpp_sig_symbols.in cpp_cnvt.awk
a0e90145 705 $(AWK) -f $(srcdir)/cpp_cnvt.awk < $(srcdir)/cpp_sig_symbols.in > \
593d151f
JB
706 cpp_sig_symbols.tmp
707 mv cpp_sig_symbols.tmp cpp_sig_symbols.c
67ec3667 708
a0e90145 709## Create a new version of the cpp_sig_symbols.in file, including all SIGXXX
67ec3667
GH
710## macros defined on this platform.
711check_signals:
5c146363 712 gcc -undef -dM -E $(srcdir)/cpp_signal.c | $(EGREP) ' SIG[A-Z]+' \
67ec3667 713 | cut -f2 -d' ' | sort > cpp_sig_symbols_here
a0e90145 714 diff -u $(srcdir)/cpp_sig_symbols.in cpp_sig_symbols_here \
5c146363 715 | $(EGREP) '^\+S' \
67ec3667
GH
716 | cut -c2- > cpp_sig_symbols_diff
717 if test -s cpp_sig_symbols_diff ; then \
a0e90145 718 cat $(srcdir)/cpp_sig_symbols.in cpp_sig_symbols_diff \
67ec3667
GH
719 | sort > cpp_sig_symbols_new ;\
720 echo "cpp_sig_symbols_new has the following additions:" ;\
721 cat cpp_sig_symbols_diff ;\
722 else echo "No new symbols found."; \
723 fi
724
a0e90145 725## Likewise for cpp_err_symbols.in.
67ec3667 726check_errnos:
5c146363 727 gcc -undef -dM -E $(srcdir)/cpp_errno.c | $(EGREP) ' E.+' \
67ec3667 728 | cut -f2 -d' ' | sort > cpp_err_symbols_here
a0e90145 729 diff -u $(srcdir)/cpp_err_symbols.in cpp_err_symbols_here \
5c146363 730 | $(EGREP) '^\+E' \
67ec3667
GH
731 | cut -c2- > cpp_err_symbols_diff
732 if test -s cpp_err_symbols_diff ; then \
a0e90145 733 cat $(srcdir)/cpp_err_symbols.in cpp_err_symbols_diff \
67ec3667
GH
734 | sort > cpp_err_symbols_new ;\
735 echo "cpp_err_symbols_new has the following additions:" ;\
736 cat cpp_err_symbols_diff ;\
737 else echo "No new symbols found."; \
738 fi
739
ad6b30a0
TP
740MOSTLYCLEANFILES = \
741 cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new \
d8a20ddb
RB
742 cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new \
743 version.h version.h.tmp \
23ccb831 744 scmconfig.h scmconfig.h.tmp
ad6b30a0 745
84595266
AW
746CLEANFILES = libpath.h *.x *.doc guile-procedures.txt guile-procedures.texi guile.texi \
747 vm-i-*.i
ee0c0e03
ML
748
749MAINTAINERCLEANFILES = c-tokenize.c