839 lines
25 KiB
Makefile
839 lines
25 KiB
Makefile
# @configure_input@
|
||
|
||
# Copyright (C) 1995 Free Software Foundation, Inc.
|
||
#
|
||
# This program is free software; you can redistribute it and/or modify
|
||
# it under the terms of the GNU General Public License as published by
|
||
# the Free Software Foundation; either version 2, or (at your option)
|
||
# any later version.
|
||
#
|
||
# This program is distributed in the hope that it will be useful,
|
||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
# GNU General Public License for more details.
|
||
#
|
||
# You should have received a copy of the GNU General Public License
|
||
# along with this software; see the file COPYING. If not, write to
|
||
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
#
|
||
|
||
|
||
#
|
||
# Makefile for libguile
|
||
#
|
||
|
||
VPATH = @srcdir@
|
||
srcdir = @srcdir@
|
||
SHELL = /bin/sh
|
||
|
||
VERSION=@GUILE_VERSION@
|
||
|
||
# Common prefix for machine-independent installed files.
|
||
prefix = @prefix@
|
||
|
||
# Common prefix for machine-dependent installed files.
|
||
exec_prefix = @exec_prefix@
|
||
|
||
# Directory in which to install init files &c
|
||
libdir = @libdir@
|
||
|
||
# Directory for installed #include files for all packages
|
||
includedir = @includedir@
|
||
innerincludedir = $(includedir)/libguile
|
||
|
||
# Directory to install `guile' in.
|
||
bindir = @bindir@
|
||
|
||
# Directories for read-only architecture-independent files.
|
||
datadir=@datadir@
|
||
pkgdatadir=$(datadir)/guile
|
||
|
||
INSTALL = $(srcdir)/../install-sh -c
|
||
INSTALL_DATA = $(INSTALL) -m 644
|
||
|
||
# Programs to make tags files.
|
||
ETAGS = etags
|
||
CTAGS = ctags -tw
|
||
|
||
# CC
|
||
X11_INCLUDES=@XINCLUDES@
|
||
XFLAGS=@X_CFLAGS@
|
||
CFLAGS=@CFLAGS@
|
||
# Check for headers in $(srcdir)/.., so that #include
|
||
# <libguile/MUMBLE.h> will find MUMBLE.h in this dir when we're
|
||
# building.
|
||
INCLUDE_CFLAGS=-I. -I.. -I$(srcdir)/.. -I$(srcdir)
|
||
ALL_CFLAGS=$(X_CFLAGS) $(INCLUDE_CFLAGS) $(X11_INCLUDES) @DEFS@
|
||
CC=@CC@ $(ALL_CFLAGS)
|
||
|
||
# CC used as a front end for ld
|
||
LDFLAGS = @LDFLAGS@
|
||
CCLD= $(CC) $(LDFLAGS)
|
||
|
||
# AR
|
||
AR = ar
|
||
AR_FLAGS = rc
|
||
RANLIB = @RANLIB@
|
||
|
||
# Any extra object files your system needs.
|
||
extras = @LIBOBJS@
|
||
|
||
libobjs= alist.o \
|
||
append.o \
|
||
appinit.o \
|
||
arbiters.o \
|
||
async.o \
|
||
boolean.o \
|
||
chars.o \
|
||
continuations.o \
|
||
dynwind.o \
|
||
eq.o \
|
||
error.o \
|
||
eval.o \
|
||
extchrs.o \
|
||
fdsocket.o \
|
||
feature.o \
|
||
filesys.o \
|
||
fports.o \
|
||
gc.o \
|
||
gdbint.o \
|
||
genio.o \
|
||
gsubr.o \
|
||
hash.o \
|
||
hashtab.o \
|
||
init.o \
|
||
ioext.o \
|
||
kw.o \
|
||
list.o \
|
||
load.o \
|
||
mallocs.o \
|
||
markers.o \
|
||
mbstrings.o \
|
||
numbers.o \
|
||
objprop.o \
|
||
options.o \
|
||
pairs.o \
|
||
ports.o \
|
||
posix.o \
|
||
print.o \
|
||
procprop.o \
|
||
procs.o \
|
||
ramap.o \
|
||
read.o \
|
||
root.o \
|
||
scmsigs.o \
|
||
sequences.o \
|
||
simpos.o \
|
||
smob.o \
|
||
socket.o \
|
||
stackchk.o \
|
||
stime.o \
|
||
strings.o \
|
||
strop.o \
|
||
strorder.o \
|
||
strports.o \
|
||
struct.o \
|
||
symbols.o \
|
||
tag.o \
|
||
throw.o \
|
||
unif.o \
|
||
variable.o \
|
||
vectors.o \
|
||
version.o \
|
||
vports.o \
|
||
weaks.o \
|
||
$(extras)
|
||
|
||
|
||
# These are headers used only by the internal guile sources.
|
||
uninstalled_h_files= _scm.h
|
||
|
||
# These are headers visible as <mumble.h>.
|
||
installed_h_files = libguile.h
|
||
|
||
# These are headers visible as <libguile/mumble.h>.
|
||
inner_h_files= __scm.h \
|
||
alist.h \
|
||
append.h \
|
||
arbiters.h \
|
||
async.h \
|
||
boolean.h \
|
||
chars.h \
|
||
continuations.h \
|
||
debug.h \
|
||
dynwind.h \
|
||
eq.h \
|
||
error.h \
|
||
eval.h \
|
||
extchrs.h \
|
||
fdsocket.h \
|
||
feature.h \
|
||
filesys.h \
|
||
fports.h \
|
||
gc.h \
|
||
gdb_interface.h \
|
||
gdbint.h \
|
||
genio.h \
|
||
gsubr.h \
|
||
hash.h \
|
||
hashtab.h \
|
||
init.h \
|
||
ioext.h \
|
||
kw.h \
|
||
list.h \
|
||
load.h \
|
||
mallocs.h \
|
||
markers.h \
|
||
mbstrings.h \
|
||
numbers.h \
|
||
objprop.h \
|
||
options.h \
|
||
pairs.h \
|
||
ports.h \
|
||
posix.h \
|
||
print.h \
|
||
procprop.h \
|
||
procs.h \
|
||
ramap.h \
|
||
read.h \
|
||
root.h \
|
||
scmhob.h \
|
||
scmsigs.h \
|
||
sequences.h \
|
||
simpos.h \
|
||
smob.h \
|
||
socket.h \
|
||
srcprop.h \
|
||
stackchk.h \
|
||
stime.h \
|
||
strings.h \
|
||
strop.h \
|
||
strorder.h \
|
||
strports.h \
|
||
struct.h \
|
||
symbols.h \
|
||
tag.h \
|
||
tags.h \
|
||
throw.h \
|
||
unif.h \
|
||
variable.h \
|
||
vectors.h \
|
||
version.h \
|
||
vports.h \
|
||
weaks.h
|
||
|
||
h_files=$(uninstalled_h_files) $(installed_h_files) $(inner_h_files)
|
||
|
||
c_files= alist.c \
|
||
append.c \
|
||
appinit.c \
|
||
arbiters.c \
|
||
async.c \
|
||
boolean.c \
|
||
chars.c \
|
||
continuations.c \
|
||
debug.c \
|
||
dynwind.c \
|
||
eq.c \
|
||
error.c \
|
||
eval.c \
|
||
extchrs.c \
|
||
fdsocket.c \
|
||
feature.c \
|
||
filesys.c \
|
||
fports.c \
|
||
gc.c \
|
||
gdbint.c \
|
||
genio.c \
|
||
gsubr.c \
|
||
hash.c \
|
||
hashtab.c \
|
||
inet_aton.c \
|
||
init.c \
|
||
ioext.c \
|
||
kw.c \
|
||
list.c \
|
||
load.c \
|
||
mallocs.c \
|
||
markers.c \
|
||
mbstrings.c \
|
||
numbers.c \
|
||
objprop.c \
|
||
options.c \
|
||
pairs.c \
|
||
ports.c \
|
||
posix.c \
|
||
print.c \
|
||
procprop.c \
|
||
procs.c \
|
||
ramap.c \
|
||
read.c \
|
||
root.c \
|
||
scmsigs.c \
|
||
sequences.c \
|
||
simpos.c \
|
||
smob.c \
|
||
socket.c \
|
||
srcprop.c \
|
||
stackchk.c \
|
||
stime.c \
|
||
strerror.c \
|
||
strings.c \
|
||
strop.c \
|
||
strorder.c \
|
||
strports.c \
|
||
struct.c \
|
||
symbols.c \
|
||
tag.c \
|
||
throw.c \
|
||
unif.c \
|
||
variable.c \
|
||
vectors.c \
|
||
version.c \
|
||
vports.c \
|
||
weaks.c
|
||
|
||
gen_c_files= alist.x \
|
||
append.x \
|
||
arbiters.x \
|
||
async.x \
|
||
boolean.x \
|
||
chars.x \
|
||
continuations.x \
|
||
debug.x \
|
||
dynwind.x \
|
||
eq.x \
|
||
error.x \
|
||
eval.x \
|
||
extchrs.x \
|
||
fdsocket.x \
|
||
feature.x \
|
||
filesys.x \
|
||
fports.x \
|
||
gc.x \
|
||
genio.x \
|
||
gsubr.x \
|
||
hash.x \
|
||
hashtab.x \
|
||
init.x \
|
||
ioext.x \
|
||
kw.x \
|
||
list.x \
|
||
load.x \
|
||
mallocs.x \
|
||
markers.x \
|
||
mbstrings.x \
|
||
numbers.x \
|
||
objprop.x \
|
||
options.x \
|
||
pairs.x \
|
||
ports.x \
|
||
posix.x \
|
||
print.x \
|
||
procprop.x \
|
||
procs.x \
|
||
ramap.x \
|
||
read.x \
|
||
root.x \
|
||
scmsigs.x \
|
||
sequences.x \
|
||
simpos.x \
|
||
smob.x \
|
||
socket.x \
|
||
srcprop.x \
|
||
stackchk.x \
|
||
stime.x \
|
||
strings.x \
|
||
strop.x \
|
||
strorder.x \
|
||
strports.x \
|
||
struct.x \
|
||
symbols.x \
|
||
tag.x \
|
||
throw.x \
|
||
unif.x \
|
||
variable.x \
|
||
vectors.x \
|
||
version.x \
|
||
vports.x \
|
||
weaks.x
|
||
|
||
|
||
|
||
ancillary = gscm.c \
|
||
gscm.h \
|
||
COPYING \
|
||
ChangeLog \
|
||
ChangeLog.scm \
|
||
Makefile.in \
|
||
acconfig.h \
|
||
aclocal.m4 \
|
||
configure \
|
||
configure.in \
|
||
scmconfig.h.in \
|
||
fd.h.in
|
||
|
||
|
||
c_sources = $(c_files) $(h_files)
|
||
manifest = $(ancillary) $(c_sources)
|
||
|
||
.SUFFIXES:
|
||
.SUFFIXES: .o .c .h .ps .dvi .info .texinfo .scm .x
|
||
|
||
.c.x:
|
||
$(CC) -DSCM_MAGIC_SNARFER -E $< | grep "^%%%" | sed -e "s/^%%%//" > $@
|
||
|
||
.PHONY: all
|
||
all: libguile.a
|
||
|
||
libpath.h: Makefile
|
||
echo '/* generated by Makefile */' > libpath.h
|
||
echo '#define LIBRARY_PATH "$(pkgdatadir)/$(VERSION)"' >> libpath.h
|
||
|
||
# The `dist' target in the top-level Makefile uses this `dist-dir'
|
||
# target to select the appropriate files for distribution from the
|
||
# directory containing this Makefile.
|
||
.PHONY: dist-dir
|
||
dist-dir:
|
||
mkdir ${DISTDIR}
|
||
for f in ${manifest}; do \
|
||
ln ${srcdir}/$$f ${DISTDIR}; \
|
||
done
|
||
mkdir ${DISTDIR}/PLUGIN
|
||
for f in REQ greet guile.config guile.libs; do \
|
||
ln ${srcdir}/PLUGIN/$$f ${DISTDIR}/PLUGIN; \
|
||
done
|
||
|
||
SUBDIR=.
|
||
manifest:
|
||
for file in $(manifest) ; \
|
||
do echo $(SUBDIR)/$$file ; \
|
||
done
|
||
|
||
libguile.a: $(libobjs)
|
||
rm -f libguile.a
|
||
$(AR) $(AR_FLAGS) libguile.a $(libobjs)
|
||
$(RANLIB) libguile.a
|
||
|
||
install: all
|
||
test -d $(prefix) || mkdir $(prefix)
|
||
test -d $(libdir) || mkdir $(libdir)
|
||
$(INSTALL_DATA) libguile.a $(libdir)/libguile$(VERSION).a
|
||
ln -f -s libguile$(VERSION).a $(libdir)/libguile.a
|
||
test -d $(includedir) || mkdir $(includedir)
|
||
test -d $(innerincludedir) || mkdir $(innerincludedir)
|
||
for h in $(installed_h_files); do \
|
||
$(INSTALL_DATA) $(srcdir)/$$h $(includedir); \
|
||
done
|
||
$(INSTALL_DATA) scmconfig.h $(innerincludedir)
|
||
for h in $(inner_h_files); do \
|
||
$(INSTALL_DATA) $(srcdir)/$$h $(innerincludedir); \
|
||
done
|
||
|
||
uninstall:
|
||
-rm $(libdir)/libguile$(VERSION).a
|
||
-rm $(libdir)/libguile.a
|
||
-rm -rf $(guileincludedir)
|
||
-rm $(includedir)/guile
|
||
|
||
|
||
TAGS:
|
||
etags $(c_sources)
|
||
|
||
|
||
info:
|
||
|
||
clean:
|
||
-rm -f libguile.a
|
||
-rm -f $(libobjs)
|
||
-rm -f $(gen_c_files)
|
||
-rm -f libpath.h
|
||
|
||
distclean: clean
|
||
-rm -f config.cache
|
||
-rm -f config.log
|
||
-rm -f config.status
|
||
-rm -f Makefile
|
||
-rm -f scmconfig.h
|
||
-rm -f fd.h
|
||
|
||
|
||
realclean: distclean
|
||
-rm -f $(gen_c_files)
|
||
-rm -f scmconfig.h
|
||
|
||
xfiles: $(gen_c_files)
|
||
|
||
DEPENDS_CFLAGS=
|
||
|
||
depends:
|
||
@gcc -MM -I. -I.. $(DEPENDS_CFLAGS) $(c_files)
|
||
|
||
###
|
||
alist.o: alist.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h eq.h \
|
||
alist.h alist.x
|
||
append.o: append.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
append.h append.x
|
||
appinit.o: appinit.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h
|
||
arbiters.o: arbiters.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h smob.h \
|
||
ports.h genio.h markers.h \
|
||
arbiters.h arbiters.x
|
||
async.o: async.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h eval.h \
|
||
throw.h smob.h ports.h genio.h \
|
||
markers.h async.x
|
||
boolean.o: boolean.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
boolean.x
|
||
chars.o: chars.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h chars.x
|
||
continuations.o: continuations.c _scm.h __scm.h \
|
||
scmconfig.h tags.h error.h \
|
||
__scm.h print.h options.h pairs.h list.h gc.h \
|
||
gsubr.h procs.h numbers.h symbols.h boolean.h strings.h vectors.h \
|
||
root.h ports.h async.h stackchk.h continuations.h \
|
||
debug.h debug.h dynwind.h continuations.h continuations.x
|
||
debug.o: debug.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h eval.h \
|
||
throw.h genio.h smob.h ports.h genio.h \
|
||
markers.h procprop.h srcprop.h alist.h continuations.h \
|
||
strports.h read.h feature.h debug.h debug.x
|
||
dynwind.o: dynwind.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h eval.h \
|
||
alist.h dynwind.h dynwind.x
|
||
eq.o: eq.c _scm.h __scm.h scmconfig.h tags.h \
|
||
error.h __scm.h print.h options.h pairs.h \
|
||
list.h gc.h gsubr.h procs.h numbers.h symbols.h boolean.h strings.h \
|
||
vectors.h root.h ports.h async.h ramap.h stackchk.h \
|
||
continuations.h debug.h strorder.h smob.h \
|
||
ports.h genio.h markers.h unif.h \
|
||
eq.h eq.x
|
||
error.o: error.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h throw.h error.x
|
||
eval.o: eval.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
debug.h append.h alist.h sequences.h eq.h continuations.h throw.h \
|
||
smob.h ports.h genio.h markers.h \
|
||
markers.h procprop.h hashtab.h hash.h srcprop.h stackchk.h \
|
||
continuations.h debug.h eval.h eval.c eval.x
|
||
extchrs.o: extchrs.c extchrs.h
|
||
fdsocket.o: fdsocket.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
filesys.h unif.h fdsocket.h fdsocket.x
|
||
feature.o: feature.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
feature.h feature.x
|
||
filesys.o: filesys.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h smob.h ports.h genio.h \
|
||
markers.h filesys.h filesys.x
|
||
fports.o: fports.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
markers.h fports.h ports.h fports.x
|
||
gc.o: gc.c _scm.h __scm.h scmconfig.h tags.h \
|
||
error.h __scm.h print.h options.h pairs.h \
|
||
list.h gc.h gsubr.h procs.h numbers.h symbols.h boolean.h strings.h \
|
||
vectors.h root.h ports.h async.h stime.h stackchk.h \
|
||
continuations.h debug.h struct.h genio.h \
|
||
weaks.h smob.h ports.h genio.h \
|
||
markers.h unif.h gc.x
|
||
gdbint.o: gdbint.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h tag.h \
|
||
strports.h read.h eval.h chars.h gdbint.h gdb_interface.h
|
||
genio.o: genio.c extchrs.h _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h genio.h
|
||
gsubr.o: gsubr.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h
|
||
hash.o: hash.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h hash.h hash.x
|
||
hashtab.o: hashtab.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
alist.h hash.h eval.h hashtab.h hashtab.x
|
||
inet_aton.o: inet_aton.c
|
||
init.o: init.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
alist.h append.h arbiters.h chars.h continuations.h debug.h dynwind.h \
|
||
eq.h eval.h fdsocket.h feature.h filesys.h fports.h \
|
||
ports.h gdbint.h hash.h hashtab.h ioext.h kw.h load.h \
|
||
mallocs.h mbstrings.h symbols.h objprop.h options.h \
|
||
posix.h procprop.h ramap.h read.h scmsigs.h sequences.h simpos.h \
|
||
smob.h genio.h markers.h socket.h srcprop.h \
|
||
stackchk.h continuations.h debug.h stime.h \
|
||
strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
|
||
variable.h version.h vports.h weaks.h init.h
|
||
ioext.o: ioext.c fd.h _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
fports.h ports.h ioext.h ioext.x
|
||
kw.o: kw.c _scm.h __scm.h scmconfig.h tags.h \
|
||
error.h __scm.h print.h options.h pairs.h \
|
||
list.h gc.h gsubr.h procs.h numbers.h symbols.h boolean.h strings.h \
|
||
vectors.h root.h ports.h async.h genio.h mbstrings.h \
|
||
symbols.h smob.h ports.h genio.h \
|
||
markers.h kw.h kw.x
|
||
list.o: list.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h eq.h \
|
||
list.x
|
||
load.o: load.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
libpath.h fports.h ports.h read.h eval.h load.h load.x
|
||
mallocs.o: mallocs.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h smob.h ports.h genio.h \
|
||
markers.h mallocs.h
|
||
markers.o: markers.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
markers.h
|
||
mbstrings.o: mbstrings.c extchrs.h _scm.h __scm.h \
|
||
scmconfig.h tags.h error.h \
|
||
__scm.h print.h options.h pairs.h list.h gc.h \
|
||
gsubr.h procs.h numbers.h symbols.h boolean.h strings.h vectors.h \
|
||
root.h ports.h async.h chars.h unif.h genio.h read.h mbstrings.h \
|
||
symbols.h mbstrings.x
|
||
numbers.o: numbers.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h unif.h numbers.x
|
||
objprop.o: objprop.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
hashtab.h alist.h weaks.h objprop.h objprop.x
|
||
options.o: options.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
options.h options.x
|
||
pairs.o: pairs.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
pairs.x
|
||
ports.o: ports.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h chars.h markers.h fports.h ports.h strports.h \
|
||
vports.h ports.x
|
||
posix.o: posix.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
fports.h ports.h genio.h scmsigs.h read.h unif.h \
|
||
feature.h sequences.h posix.h posix.x
|
||
print.o: print.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h genio.h mbstrings.h symbols.h smob.h \
|
||
ports.h genio.h markers.h eval.h \
|
||
procprop.h read.h weaks.h unif.h alist.h struct.h print.x
|
||
procprop.o: procprop.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
alist.h eval.h procprop.h procprop.x
|
||
procs.o: procs.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
procs.x
|
||
ramap.o: ramap.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h unif.h \
|
||
smob.h ports.h genio.h markers.h \
|
||
chars.h eq.h eval.h feature.h ramap.h ramap.x
|
||
read.o: read.c extchrs.h _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h genio.h eval.h unif.h mbstrings.h symbols.h kw.h \
|
||
alist.h srcprop.h hashtab.h hash.h read.h read.x
|
||
root.o: root.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
stackchk.h continuations.h debug.h dynwind.h \
|
||
eval.h genio.h smob.h ports.h genio.h \
|
||
markers.h throw.h root.x
|
||
scmsigs.o: scmsigs.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
scmsigs.h scmsigs.x
|
||
sequences.o: sequences.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
sequences.h sequences.x
|
||
simpos.o: simpos.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
scmsigs.h simpos.h simpos.x
|
||
smob.o: smob.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h smob.h \
|
||
ports.h genio.h markers.h
|
||
socket.o: socket.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
feature.h socket.h socket.x
|
||
srcprop.o: srcprop.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h smob.h \
|
||
ports.h genio.h markers.h alist.h \
|
||
debug.h hashtab.h hash.h weaks.h srcprop.h srcprop.x
|
||
stackchk.o: stackchk.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h stackchk.h continuations.h debug.h \
|
||
stackchk.x
|
||
stime.o: stime.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
stime.h stime.x
|
||
strerror.o: strerror.c
|
||
strings.o: strings.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h strings.x
|
||
strop.o: strop.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h strop.h strop.x
|
||
strorder.o: strorder.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h strorder.h strorder.x
|
||
strports.o: strports.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h unif.h \
|
||
eval.h strports.h strports.x
|
||
struct.o: struct.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h struct.h struct.x
|
||
symbols.o: symbols.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h eval.h variable.h alist.h mbstrings.h symbols.h \
|
||
symbols.x
|
||
tag.o: tag.c _scm.h __scm.h scmconfig.h tags.h \
|
||
error.h __scm.h print.h options.h pairs.h \
|
||
list.h gc.h gsubr.h procs.h numbers.h symbols.h boolean.h strings.h \
|
||
vectors.h root.h ports.h async.h chars.h struct.h tag.h tag.x
|
||
throw.o: throw.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h smob.h ports.h genio.h \
|
||
markers.h alist.h eval.h dynwind.h debug.h \
|
||
continuations.h stackchk.h continuations.h \
|
||
debug.h throw.h throw.x
|
||
unif.o: unif.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
chars.h eval.h genio.h smob.h ports.h genio.h \
|
||
markers.h sequences.h strop.h feature.h unif.h ramap.h \
|
||
unif.x
|
||
variable.o: variable.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
genio.h smob.h ports.h genio.h \
|
||
markers.h variable.h variable.x
|
||
vectors.o: vectors.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h eq.h \
|
||
vectors.x
|
||
version.o: version.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
version.h version.x
|
||
vports.o: vports.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h eval.h \
|
||
chars.h fports.h ports.h vports.h vports.x
|
||
weaks.o: weaks.c _scm.h __scm.h scmconfig.h \
|
||
tags.h error.h __scm.h print.h \
|
||
options.h pairs.h list.h gc.h gsubr.h procs.h numbers.h \
|
||
symbols.h boolean.h strings.h vectors.h root.h ports.h async.h \
|
||
weaks.h weaks.x
|