mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-09 23:40:29 +02:00
* Makefile.am (libguile_a_SOURCES):
Added "dynl.c". (modinclude_HEADERS): Added "dynl.h". (EXTRA_DIST): Added "dynl-dl.c", "dynl-dld.c", "dynl-shl.c" and "dynl-vms.c".
This commit is contained in:
parent
70122cd30d
commit
496f55cd25
2 changed files with 57 additions and 57 deletions
|
@ -9,7 +9,7 @@ INCLUDES = -I.. -I$(srcdir)/..
|
||||||
|
|
||||||
lib_LIBRARIES = libguile.a
|
lib_LIBRARIES = libguile.a
|
||||||
libguile_a_SOURCES = alist.c append.c appinit.c arbiters.c async.c \
|
libguile_a_SOURCES = alist.c append.c appinit.c arbiters.c async.c \
|
||||||
backtrace.c boolean.c chars.c continuations.c debug.c dynwind.c eq.c \
|
backtrace.c boolean.c chars.c continuations.c debug.c dynl.c dynwind.c eq.c \
|
||||||
error.c eval.c extchrs.c fdsocket.c feature.c filesys.c fports.c gc.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 \
|
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 \
|
kw.c list.c load.c mallocs.c markers.c mbstrings.c numbers.c objprop.c \
|
||||||
|
@ -24,7 +24,7 @@ include_HEADERS = libguile.h
|
||||||
# These are headers visible as <libguile/mumble.h>.
|
# These are headers visible as <libguile/mumble.h>.
|
||||||
modincludedir = $(includedir)/@module@
|
modincludedir = $(includedir)/@module@
|
||||||
modinclude_HEADERS = __scm.h alist.h append.h arbiters.h async.h \
|
modinclude_HEADERS = __scm.h alist.h append.h arbiters.h async.h \
|
||||||
backtrace.h boolean.h chars.h continuations.h debug.h dynwind.h eq.h \
|
backtrace.h boolean.h chars.h continuations.h debug.h dynl.h dynwind.h eq.h \
|
||||||
error.h eval.h extchrs.h fdsocket.h feature.h filesys.h fports.h gc.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 \
|
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 \
|
kw.h list.h load.h mallocs.h markers.h mbstrings.h numbers.h objprop.h \
|
||||||
|
@ -37,8 +37,8 @@ vports.h weaks.h snarf.h
|
||||||
## This file is generated at configure time.
|
## This file is generated at configure time.
|
||||||
modinclude_DATA = scmconfig.h
|
modinclude_DATA = scmconfig.h
|
||||||
|
|
||||||
EXTRA_DIST = gscm.c gscm.h ChangeLog-scm PLUGIN/REQ PLUGIN/guile.config \
|
EXTRA_DIST = gscm.c gscm.h ChangeLog-scm dynl-dl.c dynl-dld.c dynl-shl.c \
|
||||||
PLUGIN/guile.libs
|
dynl-vms.c PLUGIN/REQ PLUGIN/guile.config PLUGIN/guile.libs
|
||||||
|
|
||||||
## FIXME: shouldn't directly generate file; instead generate temp file
|
## FIXME: shouldn't directly generate file; instead generate temp file
|
||||||
## and "mv". Consider using timestamp file as well, to avoid
|
## and "mv". Consider using timestamp file as well, to avoid
|
||||||
|
|
|
@ -37,9 +37,9 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||||
transform = @program_transform_name@
|
transform = @program_transform_name@
|
||||||
|
FD_SETTER = @FD_SETTER@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
FD_SETTER = @FD_SETTER@
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ INCLUDES = -I.. -I$(srcdir)/..
|
||||||
|
|
||||||
lib_LIBRARIES = libguile.a
|
lib_LIBRARIES = libguile.a
|
||||||
libguile_a_SOURCES = alist.c append.c appinit.c arbiters.c async.c \
|
libguile_a_SOURCES = alist.c append.c appinit.c arbiters.c async.c \
|
||||||
backtrace.c boolean.c chars.c continuations.c debug.c dynwind.c eq.c \
|
backtrace.c boolean.c chars.c continuations.c debug.c dynl.c dynwind.c eq.c \
|
||||||
error.c eval.c extchrs.c fdsocket.c feature.c filesys.c fports.c gc.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 \
|
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 \
|
kw.c list.c load.c mallocs.c markers.c mbstrings.c numbers.c objprop.c \
|
||||||
|
@ -62,7 +62,7 @@ include_HEADERS = libguile.h
|
||||||
# These are headers visible as <libguile/mumble.h>.
|
# These are headers visible as <libguile/mumble.h>.
|
||||||
modincludedir = $(includedir)/@module@
|
modincludedir = $(includedir)/@module@
|
||||||
modinclude_HEADERS = __scm.h alist.h append.h arbiters.h async.h \
|
modinclude_HEADERS = __scm.h alist.h append.h arbiters.h async.h \
|
||||||
backtrace.h boolean.h chars.h continuations.h debug.h dynwind.h eq.h \
|
backtrace.h boolean.h chars.h continuations.h debug.h dynl.h dynwind.h eq.h \
|
||||||
error.h eval.h extchrs.h fdsocket.h feature.h filesys.h fports.h gc.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 \
|
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 \
|
kw.h list.h load.h mallocs.h markers.h mbstrings.h numbers.h objprop.h \
|
||||||
|
@ -74,8 +74,8 @@ vports.h weaks.h snarf.h
|
||||||
|
|
||||||
modinclude_DATA = scmconfig.h
|
modinclude_DATA = scmconfig.h
|
||||||
|
|
||||||
EXTRA_DIST = gscm.c gscm.h ChangeLog-scm PLUGIN/REQ PLUGIN/guile.config \
|
EXTRA_DIST = gscm.c gscm.h ChangeLog-scm dynl-dl.c dynl-dld.c dynl-shl.c \
|
||||||
PLUGIN/guile.libs
|
dynl-vms.c PLUGIN/REQ PLUGIN/guile.config PLUGIN/guile.libs
|
||||||
|
|
||||||
SUFFIXES = .x
|
SUFFIXES = .x
|
||||||
|
|
||||||
|
@ -94,22 +94,22 @@ LDFLAGS = @LDFLAGS@
|
||||||
LIBS = @LIBS@
|
LIBS = @LIBS@
|
||||||
libguile_a_LIBADD =
|
libguile_a_LIBADD =
|
||||||
libguile_a_OBJECTS = alist.o append.o appinit.o arbiters.o async.o \
|
libguile_a_OBJECTS = alist.o append.o appinit.o arbiters.o async.o \
|
||||||
backtrace.o boolean.o chars.o continuations.o debug.o dynwind.o eq.o \
|
backtrace.o boolean.o chars.o continuations.o debug.o dynl.o dynwind.o \
|
||||||
error.o eval.o extchrs.o fdsocket.o feature.o filesys.o fports.o gc.o \
|
eq.o error.o eval.o extchrs.o fdsocket.o feature.o filesys.o fports.o \
|
||||||
gdbint.o genio.o gsubr.o hash.o hashtab.o inet_aton.o init.o ioext.o \
|
gc.o gdbint.o genio.o gsubr.o hash.o hashtab.o inet_aton.o init.o \
|
||||||
kw.o list.o load.o mallocs.o markers.o mbstrings.o numbers.o objprop.o \
|
ioext.o kw.o list.o load.o mallocs.o markers.o mbstrings.o numbers.o \
|
||||||
options.o pairs.o ports.o posix.o print.o procprop.o procs.o ramap.o \
|
objprop.o options.o pairs.o ports.o posix.o print.o procprop.o procs.o \
|
||||||
read.o root.o scmsigs.o sequences.o simpos.o smob.o socket.o srcprop.o \
|
ramap.o read.o root.o scmsigs.o sequences.o simpos.o smob.o socket.o \
|
||||||
stackchk.o stacks.o stime.o strerror.o strings.o strop.o strorder.o \
|
srcprop.o stackchk.o stacks.o stime.o strerror.o strings.o strop.o \
|
||||||
strports.o struct.o symbols.o tag.o throw.o unif.o variable.o vectors.o \
|
strorder.o strports.o struct.o symbols.o tag.o throw.o unif.o \
|
||||||
version.o vports.o weaks.o
|
variable.o vectors.o version.o vports.o weaks.o
|
||||||
AR = ar
|
AR = ar
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||||
LINK = $(CC) $(LDFLAGS) -o $@
|
LINK = $(CC) $(LDFLAGS) -o $@
|
||||||
DATA = $(modinclude_DATA)
|
DATA = $(modinclude_DATA)
|
||||||
|
|
||||||
HEADERS = $(modinclude_HEADERS) $(include_HEADERS)
|
HEADERS = $(include_HEADERS) $(modinclude_HEADERS)
|
||||||
|
|
||||||
DIST_COMMON = COPYING ChangeLog Makefile.am Makefile.in acconfig.h \
|
DIST_COMMON = COPYING ChangeLog Makefile.am Makefile.in acconfig.h \
|
||||||
acinclude.m4 aclocal.m4 configure configure.in fd.h.in scmconfig.h.in \
|
acinclude.m4 aclocal.m4 configure configure.in fd.h.in scmconfig.h.in \
|
||||||
|
@ -125,20 +125,20 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
||||||
TAR = tar
|
TAR = tar
|
||||||
DEP_FILES = .deps/alist.P .deps/append.P .deps/appinit.P \
|
DEP_FILES = .deps/alist.P .deps/append.P .deps/appinit.P \
|
||||||
.deps/arbiters.P .deps/async.P .deps/backtrace.P .deps/boolean.P \
|
.deps/arbiters.P .deps/async.P .deps/backtrace.P .deps/boolean.P \
|
||||||
.deps/chars.P .deps/continuations.P .deps/debug.P .deps/dynwind.P \
|
.deps/chars.P .deps/continuations.P .deps/debug.P .deps/dynl.P \
|
||||||
.deps/eq.P .deps/error.P .deps/eval.P .deps/extchrs.P .deps/fdsocket.P \
|
.deps/dynwind.P .deps/eq.P .deps/error.P .deps/eval.P .deps/extchrs.P \
|
||||||
.deps/feature.P .deps/filesys.P .deps/fports.P .deps/gc.P \
|
.deps/fdsocket.P .deps/feature.P .deps/filesys.P .deps/fports.P \
|
||||||
.deps/gdbint.P .deps/genio.P .deps/gsubr.P .deps/hash.P .deps/hashtab.P \
|
.deps/gc.P .deps/gdbint.P .deps/genio.P .deps/gsubr.P .deps/hash.P \
|
||||||
.deps/inet_aton.P .deps/init.P .deps/ioext.P .deps/kw.P .deps/list.P \
|
.deps/hashtab.P .deps/inet_aton.P .deps/init.P .deps/ioext.P .deps/kw.P \
|
||||||
.deps/load.P .deps/mallocs.P .deps/markers.P .deps/mbstrings.P \
|
.deps/list.P .deps/load.P .deps/mallocs.P .deps/markers.P \
|
||||||
.deps/numbers.P .deps/objprop.P .deps/options.P .deps/pairs.P \
|
.deps/mbstrings.P .deps/numbers.P .deps/objprop.P .deps/options.P \
|
||||||
.deps/ports.P .deps/posix.P .deps/print.P .deps/procprop.P \
|
.deps/pairs.P .deps/ports.P .deps/posix.P .deps/print.P \
|
||||||
.deps/procs.P .deps/ramap.P .deps/read.P .deps/root.P .deps/scmsigs.P \
|
.deps/procprop.P .deps/procs.P .deps/ramap.P .deps/read.P .deps/root.P \
|
||||||
.deps/sequences.P .deps/simpos.P .deps/smob.P .deps/socket.P \
|
.deps/scmsigs.P .deps/sequences.P .deps/simpos.P .deps/smob.P \
|
||||||
.deps/srcprop.P .deps/stackchk.P .deps/stacks.P .deps/stime.P \
|
.deps/socket.P .deps/srcprop.P .deps/stackchk.P .deps/stacks.P \
|
||||||
.deps/strerror.P .deps/strings.P .deps/strop.P .deps/strorder.P \
|
.deps/stime.P .deps/strerror.P .deps/strings.P .deps/strop.P \
|
||||||
.deps/strports.P .deps/struct.P .deps/symbols.P .deps/tag.P \
|
.deps/strorder.P .deps/strports.P .deps/struct.P .deps/symbols.P \
|
||||||
.deps/throw.P .deps/unif.P .deps/variable.P .deps/vectors.P \
|
.deps/tag.P .deps/throw.P .deps/unif.P .deps/variable.P .deps/vectors.P \
|
||||||
.deps/version.P .deps/vports.P .deps/weaks.P
|
.deps/version.P .deps/vports.P .deps/weaks.P
|
||||||
SOURCES = $(libguile_a_SOURCES)
|
SOURCES = $(libguile_a_SOURCES)
|
||||||
OBJECTS = $(libguile_a_OBJECTS)
|
OBJECTS = $(libguile_a_OBJECTS)
|
||||||
|
@ -248,18 +248,6 @@ uninstall-modincludeDATA:
|
||||||
rm -f $(modincludedir)/$$p; \
|
rm -f $(modincludedir)/$$p; \
|
||||||
done
|
done
|
||||||
|
|
||||||
install-modincludeHEADERS: $(modinclude_HEADERS)
|
|
||||||
$(NORMAL_INSTALL)
|
|
||||||
$(mkinstalldirs) $(modincludedir)
|
|
||||||
list="$(modinclude_HEADERS)"; for p in $$list; do \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p; \
|
|
||||||
done
|
|
||||||
|
|
||||||
uninstall-modincludeHEADERS:
|
|
||||||
list="$(modinclude_HEADERS)"; for p in $$list; do \
|
|
||||||
rm -f $(modincludedir)/$$p; \
|
|
||||||
done
|
|
||||||
|
|
||||||
install-includeHEADERS: $(include_HEADERS)
|
install-includeHEADERS: $(include_HEADERS)
|
||||||
$(NORMAL_INSTALL)
|
$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(includedir)
|
$(mkinstalldirs) $(includedir)
|
||||||
|
@ -272,6 +260,18 @@ uninstall-includeHEADERS:
|
||||||
rm -f $(includedir)/$$p; \
|
rm -f $(includedir)/$$p; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
install-modincludeHEADERS: $(modinclude_HEADERS)
|
||||||
|
$(NORMAL_INSTALL)
|
||||||
|
$(mkinstalldirs) $(modincludedir)
|
||||||
|
list="$(modinclude_HEADERS)"; for p in $$list; do \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p; \
|
||||||
|
done
|
||||||
|
|
||||||
|
uninstall-modincludeHEADERS:
|
||||||
|
list="$(modinclude_HEADERS)"; for p in $$list; do \
|
||||||
|
rm -f $(modincludedir)/$$p; \
|
||||||
|
done
|
||||||
|
|
||||||
tags: TAGS
|
tags: TAGS
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES)
|
ID: $(HEADERS) $(SOURCES)
|
||||||
|
@ -368,21 +368,21 @@ installcheck:
|
||||||
install-exec: install-libLIBRARIES
|
install-exec: install-libLIBRARIES
|
||||||
$(NORMAL_INSTALL)
|
$(NORMAL_INSTALL)
|
||||||
|
|
||||||
install-data: install-modincludeDATA install-modincludeHEADERS install-includeHEADERS
|
install-data: install-modincludeDATA install-includeHEADERS install-modincludeHEADERS
|
||||||
$(NORMAL_INSTALL)
|
$(NORMAL_INSTALL)
|
||||||
|
|
||||||
install: install-exec install-data all
|
install: install-exec install-data all
|
||||||
@:
|
@:
|
||||||
|
|
||||||
uninstall: uninstall-libLIBRARIES uninstall-modincludeDATA uninstall-modincludeHEADERS uninstall-includeHEADERS
|
uninstall: uninstall-libLIBRARIES uninstall-modincludeDATA uninstall-includeHEADERS uninstall-modincludeHEADERS
|
||||||
|
|
||||||
all: $(LIBRARIES) $(DATA) $(HEADERS) Makefile scmconfig.h
|
all: $(LIBRARIES) $(DATA) $(HEADERS) Makefile scmconfig.h
|
||||||
|
|
||||||
install-strip:
|
install-strip:
|
||||||
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
|
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
|
||||||
installdirs:
|
installdirs:
|
||||||
$(mkinstalldirs) $(libdir) $(modincludedir) $(modincludedir) \
|
$(mkinstalldirs) $(libdir) $(modincludedir) $(includedir) \
|
||||||
$(includedir)
|
$(modincludedir)
|
||||||
|
|
||||||
|
|
||||||
mostlyclean-generic:
|
mostlyclean-generic:
|
||||||
|
@ -423,14 +423,14 @@ maintainer-clean-hdr mostlyclean-libLIBRARIES distclean-libLIBRARIES \
|
||||||
clean-libLIBRARIES maintainer-clean-libLIBRARIES uninstall-libLIBRARIES \
|
clean-libLIBRARIES maintainer-clean-libLIBRARIES uninstall-libLIBRARIES \
|
||||||
install-libLIBRARIES mostlyclean-compile distclean-compile \
|
install-libLIBRARIES mostlyclean-compile distclean-compile \
|
||||||
clean-compile maintainer-clean-compile uninstall-modincludeDATA \
|
clean-compile maintainer-clean-compile uninstall-modincludeDATA \
|
||||||
install-modincludeDATA uninstall-modincludeHEADERS \
|
install-modincludeDATA uninstall-includeHEADERS install-includeHEADERS \
|
||||||
install-modincludeHEADERS uninstall-includeHEADERS \
|
uninstall-modincludeHEADERS install-modincludeHEADERS tags \
|
||||||
install-includeHEADERS tags mostlyclean-tags distclean-tags clean-tags \
|
mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
|
||||||
maintainer-clean-tags distdir mostlyclean-depend distclean-depend \
|
distdir mostlyclean-depend distclean-depend clean-depend \
|
||||||
clean-depend maintainer-clean-depend info dvi installcheck install-exec \
|
maintainer-clean-depend info dvi installcheck install-exec install-data \
|
||||||
install-data install uninstall all installdirs mostlyclean-generic \
|
install uninstall all installdirs mostlyclean-generic distclean-generic \
|
||||||
distclean-generic clean-generic maintainer-clean-generic clean \
|
clean-generic maintainer-clean-generic clean mostlyclean distclean \
|
||||||
mostlyclean distclean maintainer-clean
|
maintainer-clean
|
||||||
|
|
||||||
|
|
||||||
libpath.h: Makefile
|
libpath.h: Makefile
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue