portability fixes for header inclusion etc.
[bpt/guile.git] / libguile / Makefile.in
CommitLineData
0f2d19dd
JB
1# @configure_input@
2
3# Copyright (C) 1995 Free Software Foundation, Inc.
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2, or (at your option)
8# any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this software; see the file COPYING. If not, write to
17# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18#
19\f
20
21#
22# Makefile for libguile
23#
24
25VPATH = @srcdir@
26srcdir = @srcdir@
27SHELL = /bin/sh
28
29VERSION=@GUILE_VERSION@
30
31# Common prefix for machine-independent installed files.
32prefix = @prefix@
33
34# Common prefix for machine-dependent installed files.
35exec_prefix = @exec_prefix@
36
37# Directory in which to install init files &c
38libdir = $(exec_prefix)/lib
39
40# Directory to search by default for included makefiles.
41includedir = $(prefix)/include
42
43# Directory to install `guile' in.
44bindir = $(exec_prefix)/bin
45
46
47INSTALL = $(srcdir)/../install-sh -c
48INSTALL_DATA = $(INSTALL) -m 644
49
50# Programs to make tags files.
51ETAGS = etags
52CTAGS = ctags -tw
53
54# where the init files are found
55IMPLPATH=$(libdir)/gls/guile
56
57# where the Tcl and Tk sources are found
58TCL_SRC_DIR = @TCL_SRC_DIR@
59TK_SRC_DIR = @TK_SRC_DIR@
60
61# CC
62X11_INCLUDES = @XINCLUDES@
63XFLAGS = @X_CFLAGS@
64CFLAGS = @CFLAGS@
65INCLUDE_CFLAGS = -I. -I$(srcdir) -I$(TCL_SRC_DIR)/generic -I$(TK_SRC_DIR)/generic
66ALL_CFLAGS = $(CFLAGS) $(X_CFLAGS) $(INCLUDE_CFLAGS) $(X11_INCLUDES) -DLIBRARY_PATH=\"$(libdir)/\" @DEFS@
67CC = @CC@ $(ALL_CFLAGS) -Wall
68
69# CC used as a front end for ld
70LDFLAGS = @LDFLAGS@
71CCLD= $(CC) $(LDFLAGS)
72
73# AR
74AR = ar
75AR_FLAGS = rc
76RANLIB = @RANLIB@
77
78# Any extra object files your system needs.
79extras = @LIBOBJS@
80
81libobjs= alist.o \
82 append.o \
83 appinit.o \
84 arbiters.o \
85 async.o \
86 boolean.o \
87 chars.o \
88 continuations.o \
89 dynwind.o \
90 eq.o \
91 error.o \
92 eval.o \
93 extchrs.o \
94 fdsocket.o \
95 feature.o \
96 files.o \
97 filesys.o \
98 fports.o \
99 gc.o \
100 genio.o \
101 gsubr.o \
102 hash.o \
103 hashtab.o \
104 init.o \
105 ioext.o \
106 kw.o \
107 list.o \
108 load.o \
109 mallocs.o \
110 markers.o \
0f2d19dd
JB
111 marksweep.o \
112 mbstrings.o \
113 numbers.o \
114 objprop.o \
115 pairs.o \
116 ports.o \
117 posix.o \
118 print.o \
119 procprop.o \
120 procs.o \
121 ramap.o \
122 read.o \
123 root.o \
124 scmsigs.o \
125 sequences.o \
126 simpos.o \
127 smob.o \
128 socket.o \
129 stackchk.o \
130 stime.o \
131 strings.o \
132 strop.o \
133 strorder.o \
134 strports.o \
135 struct.o \
136 symbols.o \
137 tag.o \
138 throw.o \
139 unif.o \
140 variable.o \
141 vectors.o \
142 vports.o \
143 weaks.o \
144 $(extras)
145
146
95b88819 147uninstalled_h_files= _scm.h
0f2d19dd
JB
148
149installed_h_files= __scm.h \
150 alist.h \
151 append.h \
152 arbiters.h \
153 async.h \
154 boolean.h \
155 chars.h \
156 continuations.h \
157 dynwind.h \
158 eq.h \
159 error.h \
160 eval.h \
161 extchrs.h \
162 fdsocket.h \
163 feature.h \
0f2d19dd
JB
164 files.h \
165 filesys.h \
0f7876f5 166 fports.h \
0f2d19dd
JB
167 gc.h \
168 genio.h \
169 gsubr.h \
170 hash.h \
171 hashtab.h \
172 init.h \
173 ioext.h \
174 kw.h \
0f7876f5 175 libguile.h \
0f2d19dd
JB
176 list.h \
177 load.h \
0f2d19dd
JB
178 mallocs.h \
179 markers.h \
180 marksweep.h \
0f2d19dd
JB
181 mbstrings.h \
182 numbers.h \
183 objprop.h \
184 pairs.h \
0f7876f5 185 params.h \
0f2d19dd
JB
186 ports.h \
187 posix.h \
0f2d19dd 188 print.h \
0f2d19dd 189 procprop.h \
0f7876f5 190 procs.h \
0f2d19dd
JB
191 ramap.h \
192 read.h \
193 root.h \
0f7876f5 194 scmhob.h \
0f2d19dd
JB
195 scmsigs.h \
196 sequences.h \
197 simpos.h \
198 smob.h \
199 socket.h \
200 stackchk.h \
0f7876f5
JB
201 stime.h \
202 strings.h \
203 strop.h \
204 strorder.h \
0f2d19dd
JB
205 strports.h \
206 struct.h \
207 symbols.h \
208 tag.h \
0f2d19dd 209 tags.h \
0f7876f5
JB
210 throw.h \
211 unif.h \
0f2d19dd
JB
212 variable.h \
213 vectors.h \
214 vports.h \
0f7876f5 215 weaks.h
0f2d19dd
JB
216
217h_files=$(uninstalled_h_files) $(installed_h_files)
218
219c_files= alist.c \
220 append.c \
221 appinit.c \
222 arbiters.c \
223 async.c \
224 boolean.c \
225 chars.c \
226 continuations.c \
227 dynwind.c \
228 eq.c \
229 error.c \
230 eval.c \
231 extchrs.c \
232 fdsocket.c \
233 feature.c \
234 files.c \
235 filesys.c \
236 fports.c \
237 gc.c \
238 genio.c \
239 gsubr.c \
240 hash.c \
241 hashtab.c \
242 inet_aton.c \
243 init.c \
244 ioext.c \
245 kw.c \
246 list.c \
247 load.c \
248 mallocs.c \
249 markers.c \
0f2d19dd
JB
250 marksweep.c \
251 mbstrings.c \
252 numbers.c \
253 objprop.c \
254 pairs.c \
255 ports.c \
256 posix.c \
257 print.c \
258 procprop.c \
259 procs.c \
260 ramap.c \
261 read.c \
262 root.c \
263 scmsigs.c \
264 sequences.c \
265 simpos.c \
266 smob.c \
267 socket.c \
268 stackchk.c \
269 stime.c \
270 strings.c \
271 strop.c \
272 strorder.c \
273 strports.c \
274 struct.c \
275 symbols.c \
276 tag.c \
277 throw.c \
278 unif.c \
279 variable.c \
280 vectors.c \
281 vports.c \
282 weaks.c
283
284gen_c_files= alist.x \
285 append.x \
286 arbiters.x \
287 async.x \
288 boolean.x \
289 chars.x \
290 continuations.x \
291 dynwind.x \
292 eq.x \
293 error.x \
294 eval.x \
295 extchrs.x \
296 fdsocket.x \
297 feature.x \
298 files.x \
299 filesys.x \
300 fports.x \
301 gc.x \
302 genio.x \
303 gsubr.x \
304 hash.x \
305 hashtab.x \
306 init.x \
307 ioext.x \
308 kw.x \
309 list.x \
310 load.x \
311 mallocs.x \
312 markers.x \
313 marksweep.x \
314 mbstrings.x \
315 numbers.x \
316 objprop.x \
317 pairs.x \
318 ports.x \
319 posix.x \
320 print.x \
321 procprop.x \
322 procs.x \
323 ramap.x \
324 read.x \
325 root.x \
326 scmsigs.x \
327 sequences.x \
328 simpos.x \
329 smob.x \
330 socket.x \
331 stackchk.x \
332 stime.x \
333 strings.x \
334 strop.x \
335 strorder.x \
336 strports.x \
337 struct.x \
338 symbols.x \
339 tag.x \
340 throw.x \
341 unif.x \
342 variable.x \
343 vectors.x \
344 vports.x \
345 weaks.x
346
347
348
0f7876f5 349ancillary = gscm.c \
0f2d19dd
JB
350 gscm.h \
351 COPYING \
352 ChangeLog \
353 ChangeLog.scm \
354 Makefile.in \
0f2d19dd
JB
355 acconfig-1.5.h \
356 configure \
357 configure.in \
358 def.sed \
359 scmconfig.h.in \
0f7876f5 360 fd.h.in
0f2d19dd
JB
361
362
363c_sources = $(c_files) $(h_files)
0f7876f5 364manifest = $(ancillary) $(c_sources)
0f2d19dd
JB
365
366
367.SUFFIXES:
95b88819 368.SUFFIXES: .o .c .h .ps .dvi .info .texinfo .scm .x
0f2d19dd
JB
369
370.c.x:
371 if test ! -escmconfig.h ; then \
372 touch scmconfig.h; \
373 fake_scmconfig=1; \
374 else \
375 fake_scmconfig=0; \
376 fi; \
377 $(CC) $(ALL_CFLAGS) -I. -DSCM_MAGIC_SNARFER -E $< | grep "^%%%" | sed -e "s/^%%%//" > $@ ; \
378 if test $$fake_scmconfig -eq 1 ; then \
379 rm scmconfig.h; \
9edad2a0 380 else : ; \
0f2d19dd
JB
381 fi
382
383.PHONY: all
384all: libguile.a
385
0f7876f5
JB
386# The `dist' target in the top-level Makefile uses this `dist-dir'
387# target to select the appropriate files for distribution from the
388# directory containing this Makefile.
389.PHONY: dist-dir
390dist-dir:
391 mkdir ${DISTDIR}
392 for f in ${manifest}; do \
393 ln ${srcdir}/$$f ${DISTDIR}; \
394 done
395 mkdir ${DISTDIR}/PLUGIN
396 for f in REQ greet guile.config guile.libs; do \
397 ln ${srcdir}/PLUGIN/$$f ${DISTDIR}/PLUGIN; \
398 done
399
0f2d19dd
JB
400SUBDIR=.
401manifest:
402 for file in $(manifest) ; \
403 do echo $(SUBDIR)/$$file ; \
404 done
405
406libguile.a: $(libobjs)
407 rm -f libguile.a
408 $(AR) $(AR_FLAGS) libguile.a $(libobjs)
409 $(RANLIB) libguile.a
410
411install: all
412 test -d $(prefix) || mkdir $(prefix)
413 test -d $(libdir) || mkdir $(libdir)
414 test -d $(includedir) || mkdir $(includedir)
415 test -d $(includedir)/guile$(VERSION) || mkdir $(includedir)/guile$(VERSION)
416 $(INSTALL_DATA) libguile.a $(libdir)/libguile$(VERSION).a
417 $(RANLIB) $(libdir)/libguile$(VERSION).a
418 $(INSTALL_DATA) scmconfig.h $(includedir)/guile$(VERSION)
419 for h in $(h_files); do \
420 $(INSTALL_DATA) $(srcdir)/$$h $(includedir)/guile$(VERSION); \
421 done
422
423uninstall:
424 -for h in $(h_files); do \
425 rm -f $(includedir)/guile$(VERSION)/$$h; \
426 done
427 rm -f $(includedir)/guile$(VERSION)/scmconfig.h
428 -rmdir $(includedir)/guile$(VERSION)
429 -rm $(libdir)/libguile$(VERSION).a
430
431
432TAGS:
433 etags $(c_sources)
434
435
436info:
437
438clean:
439 -rm -f libguile.a
440 -rm -f $(libobjs)
441 -rm -f $(gen_c_files)
442
443distclean: clean
444 -rm -f config.cache
445 -rm -f config.log
446 -rm -f config.status
447 -rm -f Makefile
448 -rm -f scmconfig.h
449
450
451realclean: distclean
452 -rm -f $(gen_c_files)
453 -rm -f scmconfig.h
454
455xfiles: $(gen_c_files)
456
457DEPENDS_CFLAGS=
458
459depends:
460 touch scmconfig.h
461 touch $(gen_c_files)
462 gcc -MM -I. $(DEPENDS_CFLAGS) $(c_files)
463 rm $(gen_c_files)
464 rm scmconfig.h
465
0f2d19dd
JB
466###
467alist.o : alist.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
468 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
469 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
470 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
471 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
472 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
473 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
474 variable.h vectors.h vports.h weaks.h alist.x
475append.o : append.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
476 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
477 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
478 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
479 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
480 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
481 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
482 unif.h variable.h vectors.h vports.h weaks.h append.x
483appinit.o : appinit.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
484 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
485 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
486 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
487 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
488 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
489 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
490 unif.h variable.h vectors.h vports.h weaks.h
491arbiters.o : arbiters.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
492 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
493 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
494 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
495 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
496 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
497 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
498 unif.h variable.h vectors.h vports.h weaks.h arbiters.x
499async.o : async.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
500 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
501 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
502 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
503 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
504 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
505 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
506 variable.h vectors.h vports.h weaks.h async.x
507boolean.o : boolean.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
508 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
509 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
510 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
511 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
512 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
513 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
514 unif.h variable.h vectors.h vports.h weaks.h boolean.x
515chars.o : chars.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
516 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
517 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
518 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
519 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
520 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
521 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
522 variable.h vectors.h vports.h weaks.h chars.x
523continuations.o : continuations.c _scm.h libguile.h __scm.h tags.h smob.h params.h \
524 alist.h append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h \
525 eq.h error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h \
526 fports.h gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h \
527 kw.h list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h \
528 print.h procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h \
529 socket.h stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h \
530 tag.h throw.h unif.h variable.h vectors.h vports.h weaks.h continuations.x
531dynwind.o : dynwind.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
532 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
533 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
534 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
535 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
536 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
537 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
538 unif.h variable.h vectors.h vports.h weaks.h dynwind.x
539eq.o : eq.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
540 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
541 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
542 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
543 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
544 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
545 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
546 variable.h vectors.h vports.h weaks.h eq.x
547error.o : error.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
548 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
549 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
550 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
551 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
552 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
553 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
554 variable.h vectors.h vports.h weaks.h error.x
555eval.o : eval.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
556 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
557 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
558 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
559 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
560 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
561 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
562 variable.h vectors.h vports.h weaks.h eval.x
563extchrs.o : extchrs.c extchrs.h
564fdsocket.o : fdsocket.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
565 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
566 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
567 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
568 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
569 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
570 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
571 unif.h variable.h vectors.h vports.h weaks.h fdsocket.x
572feature.o : feature.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
573 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
574 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
575 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
576 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
577 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
578 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
579 unif.h variable.h vectors.h vports.h weaks.h feature.x
580files.o : files.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
581 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
582 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
583 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
584 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
585 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
586 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
587 variable.h vectors.h vports.h weaks.h files.x
588filesys.o : filesys.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
589 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
590 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
591 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
592 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
593 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
594 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
595 unif.h variable.h vectors.h vports.h weaks.h filesys.x
596fports.o : fports.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
597 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
598 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
599 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
600 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
601 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
602 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
603 unif.h variable.h vectors.h vports.h weaks.h fports.x
604gc.o : gc.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
605 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
606 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
607 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
608 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
609 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
610 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
611 variable.h vectors.h vports.h weaks.h gc.x
612genio.o : genio.c extchrs.h _scm.h libguile.h __scm.h tags.h smob.h params.h \
613 alist.h append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h \
614 eq.h error.h pairs.h eval.h fdsocket.h feature.h files.h filesys.h fports.h \
615 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
616 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
617 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
618 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
619 unif.h variable.h vectors.h vports.h weaks.h
620gsubr.o : gsubr.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
621 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
622 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
623 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
624 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
625 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
626 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
627 variable.h vectors.h vports.h weaks.h
628hash.o : hash.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
629 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
630 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
631 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
632 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
633 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
634 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
635 variable.h vectors.h vports.h weaks.h hash.x
636hashtab.o : hashtab.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
637 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
638 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
639 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
640 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
641 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
642 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
643 unif.h variable.h vectors.h vports.h weaks.h hashtab.x
644inet_aton.o : inet_aton.c
645init.o : init.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
646 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
647 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
648 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
649 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
650 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
651 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
652 variable.h vectors.h vports.h weaks.h
653ioext.o : ioext.c ioext.x
654kw.o : kw.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
655 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
656 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
657 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
658 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
659 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
660 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
661 variable.h vectors.h vports.h weaks.h kw.x
662list.o : list.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
663 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
664 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
665 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
666 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
667 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
668 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
669 variable.h vectors.h vports.h weaks.h list.x
670load.o : load.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
671 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
672 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
673 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
674 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
675 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
676 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
677 variable.h vectors.h vports.h weaks.h load.x
678mallocs.o : mallocs.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
679 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
680 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
681 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
682 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
683 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
684 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
685 unif.h variable.h vectors.h vports.h weaks.h
686markers.o : markers.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
687 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
688 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
689 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
690 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
691 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
692 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
693 unif.h variable.h vectors.h vports.h weaks.h
694markers.o : markers.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
695 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
696 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
697 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
698 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
699 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
700 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
701 unif.h variable.h vectors.h vports.h weaks.h
702marksweep.o : marksweep.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
703 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
704 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
705 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
706 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
707 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
708 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
709 unif.h variable.h vectors.h vports.h weaks.h
710mbstrings.o : mbstrings.c extchrs.h _scm.h libguile.h __scm.h tags.h smob.h \
711 params.h alist.h append.h arbiters.h async.h boolean.h chars.h continuations.h \
712 dynwind.h eq.h error.h pairs.h eval.h fdsocket.h feature.h files.h filesys.h \
713 fports.h gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h \
714 kw.h list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h \
715 print.h procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h \
716 socket.h stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h \
717 tag.h throw.h unif.h variable.h vectors.h vports.h weaks.h mbstrings.x
718numbers.o : numbers.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
719 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
720 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
721 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
722 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
723 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
724 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
725 unif.h variable.h vectors.h vports.h weaks.h numbers.x
726objprop.o : objprop.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
727 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
728 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
729 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
730 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
731 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
732 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
733 unif.h variable.h vectors.h vports.h weaks.h objprop.x
734pairs.o : pairs.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
735 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
736 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
737 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
738 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
739 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
740 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
741 variable.h vectors.h vports.h weaks.h pairs.x
742ports.o : ports.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
743 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
744 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
745 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
746 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
747 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
748 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
749 variable.h vectors.h vports.h weaks.h ports.x
750posix.o : posix.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
751 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
752 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
753 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
754 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
755 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
756 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
757 variable.h vectors.h vports.h weaks.h posix.x
758print.o : print.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
759 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
760 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
761 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
762 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
763 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
764 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
765 variable.h vectors.h vports.h weaks.h print.x
766procprop.o : procprop.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
767 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
768 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
769 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
770 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
771 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
772 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
773 unif.h variable.h vectors.h vports.h weaks.h procprop.x
774procs.o : procs.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
775 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
776 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
777 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
778 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
779 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
780 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
781 variable.h vectors.h vports.h weaks.h procs.x
782ramap.o : ramap.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
783 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
784 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
785 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
786 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
787 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
788 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
789 variable.h vectors.h vports.h weaks.h ramap.x
790read.o : read.c extchrs.h _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
791 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
792 error.h pairs.h eval.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
793 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
794 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
795 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
796 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
797 variable.h vectors.h vports.h weaks.h read.x
798root.o : root.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
799 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
800 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
801 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
802 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
803 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
804 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
805 variable.h vectors.h vports.h weaks.h
806scmsigs.o : scmsigs.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
807 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
808 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
809 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
810 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
811 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
812 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
813 unif.h variable.h vectors.h vports.h weaks.h scmsigs.x
814sequences.o : sequences.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
815 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
816 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
817 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
818 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
819 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
820 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
821 unif.h variable.h vectors.h vports.h weaks.h sequences.x
822simpos.o : simpos.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
823 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
824 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
825 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
826 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
827 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
828 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
829 unif.h variable.h vectors.h vports.h weaks.h simpos.x
830smob.o : smob.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
831 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
832 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
833 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
834 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
835 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
836 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
837 variable.h vectors.h vports.h weaks.h
838socket.o : socket.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
839 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
840 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
841 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
842 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
843 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
844 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
845 unif.h variable.h vectors.h vports.h weaks.h socket.x
846stackchk.o : stackchk.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
847 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
848 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
849 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
850 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
851 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
852 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
853 unif.h variable.h vectors.h vports.h weaks.h stackchk.x
854stime.o : stime.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
855 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
856 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
857 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
858 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
859 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
860 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
861 variable.h vectors.h vports.h weaks.h stime.x
862strings.o : strings.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
863 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
864 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
865 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
866 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
867 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
868 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
869 unif.h variable.h vectors.h vports.h weaks.h strings.x
870strop.o : strop.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
871 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
872 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
873 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
874 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
875 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
876 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
877 variable.h vectors.h vports.h weaks.h strop.x
878strorder.o : strorder.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
879 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
880 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
881 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
882 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
883 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
884 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
885 unif.h variable.h vectors.h vports.h weaks.h strorder.x
886strports.o : strports.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
887 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
888 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
889 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
890 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
891 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
892 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
893 unif.h variable.h vectors.h vports.h weaks.h strports.x
894struct.o : struct.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
895 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
896 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
897 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
898 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
899 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
900 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
901 unif.h variable.h vectors.h vports.h weaks.h struct.x
902symbols.o : symbols.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
903 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
904 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
905 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
906 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
907 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
908 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
909 unif.h variable.h vectors.h vports.h weaks.h symbols.x
910tag.o : tag.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
911 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
912 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
913 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
914 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
915 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
916 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
917 variable.h vectors.h vports.h weaks.h tag.x
918throw.o : throw.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
919 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
920 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
921 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
922 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
923 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
924 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
925 variable.h vectors.h vports.h weaks.h throw.x
926unif.o : unif.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
927 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
928 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
929 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
930 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
931 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
932 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
933 variable.h vectors.h vports.h weaks.h unif.x
934variable.o : variable.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
935 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
936 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
937 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
938 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
939 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
940 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
941 unif.h variable.h vectors.h vports.h weaks.h variable.x
942vectors.o : vectors.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
943 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
944 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
945 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
946 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
947 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
948 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
949 unif.h variable.h vectors.h vports.h weaks.h vectors.x
950vports.o : vports.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h \
951 append.h arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h \
952 error.h pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h \
953 gc.h marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h \
954 list.h load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h \
955 procprop.h procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h \
956 stackchk.h stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h \
957 unif.h variable.h vectors.h vports.h weaks.h vports.x
958weaks.o : weaks.c _scm.h libguile.h __scm.h tags.h smob.h params.h alist.h append.h \
959 arbiters.h async.h boolean.h chars.h continuations.h dynwind.h eq.h error.h \
960 pairs.h eval.h extchrs.h fdsocket.h feature.h files.h filesys.h fports.h gc.h \
961 marksweep.h genio.h ports.h gsubr.h hash.h hashtab.h init.h ioext.h kw.h list.h \
962 load.h mallocs.h markers.h mbstrings.h symbols.h numbers.h posix.h print.h procprop.h \
963 procs.h ramap.h read.h root.h scmsigs.h sequences.h simpos.h socket.h stackchk.h \
964 stime.h strings.h strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
965 variable.h vectors.h vports.h weaks.h weaks.x