mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-12 16:50:22 +02:00
Changes to work with automake-1.1n, which has better libtool support.
* Makefile.am: Use lib_LTLIBRARIES instead of lib_PROGRAMS. Use libguile_la_LIBADD instead of libguile_la_LDADD. (What's the difference here?) (libguile_la_SOURCES, modinclude_HEADERS, EXTRA_DIST): Format for readability. * Makefile.in: Rebuild.
This commit is contained in:
parent
363c8a613e
commit
e13d8dc0e0
2 changed files with 148 additions and 130 deletions
|
@ -7,22 +7,22 @@ AUTOMAKE_OPTIONS = foreign
|
||||||
## building.
|
## building.
|
||||||
INCLUDES = -I.. -I$(srcdir)/..
|
INCLUDES = -I.. -I$(srcdir)/..
|
||||||
|
|
||||||
lib_PROGRAMS = libguile.la
|
lib_LTLIBRARIES = libguile.la
|
||||||
libguile_la_SOURCES = alist.c append.c appinit.c arbiters.c async.c \
|
libguile_la_SOURCES = alist.c append.c appinit.c arbiters.c async.c \
|
||||||
boolean.c chars.c continuations.c dynl.c dynwind.c eq.c \
|
boolean.c chars.c continuations.c dynl.c dynwind.c eq.c \
|
||||||
error.c eval.c extchrs.c feature.c filesys.c fports.c gc.c \
|
error.c eval.c extchrs.c feature.c filesys.c fports.c gc.c \
|
||||||
gdbint.c genio.c gsubr.c hash.c hashtab.c init.c ioext.c \
|
gdbint.c genio.c gsubr.c hash.c hashtab.c init.c ioext.c \
|
||||||
kw.c list.c load.c mallocs.c markers.c mbstrings.c net_db.c \
|
kw.c list.c load.c mallocs.c markers.c mbstrings.c net_db.c \
|
||||||
numbers.c objprop.c \
|
numbers.c objprop.c \
|
||||||
options.c pairs.c ports.c posix.c print.c procprop.c procs.c ramap.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 \
|
read.c root.c scmsigs.c sequences.c simpos.c smob.c socket.c \
|
||||||
stackchk.c stime.c strings.c strop.c strorder.c \
|
stackchk.c stime.c strings.c strop.c strorder.c \
|
||||||
strports.c struct.c symbols.c tag.c throw.c unif.c variable.c \
|
strports.c struct.c symbols.c tag.c throw.c unif.c variable.c \
|
||||||
vectors.c version.c vports.c weaks.c _scm.h
|
vectors.c version.c vports.c weaks.c _scm.h
|
||||||
EXTRA_libguile_la_SOURCES = backtrace.c stacks.c debug.c srcprop.c \
|
EXTRA_libguile_la_SOURCES = backtrace.c stacks.c debug.c srcprop.c \
|
||||||
strerror.c inet_aton.c putenv.c
|
strerror.c inet_aton.c putenv.c
|
||||||
libguile_la_DEPENDENCIES = @LIBLOBJS@
|
libguile_la_DEPENDENCIES = @LIBLOBJS@
|
||||||
libguile_la_LDADD = @LIBLOBJS@
|
libguile_la_LIBADD = @LIBLOBJS@
|
||||||
libguile_la_LDFLAGS = -version-info 0:0 -rpath $(libdir)
|
libguile_la_LDFLAGS = -version-info 0:0 -rpath $(libdir)
|
||||||
|
|
||||||
include_HEADERS = libguile.h
|
include_HEADERS = libguile.h
|
||||||
|
@ -30,16 +30,16 @@ 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 dynl.h dynwind.h eq.h \
|
backtrace.h boolean.h chars.h continuations.h debug.h dynl.h dynwind.h \
|
||||||
error.h eval.h extchrs.h feature.h filesys.h fports.h gc.h \
|
eq.h error.h eval.h extchrs.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 \
|
||||||
kw.h list.h load.h mallocs.h markers.h mbstrings.h net_db.h \
|
ioext.h kw.h list.h load.h mallocs.h markers.h mbstrings.h net_db.h \
|
||||||
numbers.h objprop.h \
|
numbers.h objprop.h options.h pairs.h ports.h posix.h print.h \
|
||||||
options.h pairs.h ports.h posix.h print.h procprop.h procs.h ramap.h read.h \
|
procprop.h procs.h ramap.h read.h root.h scmhob.h scmsigs.h \
|
||||||
root.h scmhob.h scmsigs.h sequences.h simpos.h smob.h socket.h srcprop.h \
|
sequences.h simpos.h smob.h socket.h srcprop.h stackchk.h stacks.h \
|
||||||
stackchk.h stacks.h stime.h strings.h strop.h strorder.h strports.h struct.h \
|
stime.h strings.h strop.h strorder.h strports.h struct.h symbols.h \
|
||||||
symbols.h tag.h tags.h throw.h unif.h variable.h vectors.h version.h \
|
tag.h tags.h throw.h unif.h variable.h vectors.h version.h vports.h \
|
||||||
vports.h weaks.h snarf.h
|
weaks.h snarf.h
|
||||||
|
|
||||||
## This file is generated at configure time. That is why it is DATA
|
## This file is generated at configure time. That is why it is DATA
|
||||||
## and not a header -- headers are included in the distribution.
|
## and not a header -- headers are included in the distribution.
|
||||||
|
@ -48,9 +48,9 @@ modinclude_DATA = scmconfig.h
|
||||||
bin_SCRIPTS = guile-snarf
|
bin_SCRIPTS = guile-snarf
|
||||||
|
|
||||||
EXTRA_DIST = gscm.c gscm.h ChangeLog-scm dynl-dl.c dynl-dld.c dynl-shl.c \
|
EXTRA_DIST = gscm.c gscm.h ChangeLog-scm dynl-dl.c dynl-dld.c dynl-shl.c \
|
||||||
dynl-vms.c DYNAMIC-LINKING PLUGIN/REQ PLUGIN/guile.config \
|
dynl-vms.c DYNAMIC-LINKING PLUGIN/REQ PLUGIN/guile.config \
|
||||||
PLUGIN/guile.libs.in cpp_signal.c cpp_errno.c cpp_err_symbols.in \
|
PLUGIN/guile.libs.in cpp_signal.c cpp_errno.c cpp_err_symbols.in \
|
||||||
cpp_sig_symbols.in cpp_cnvt.awk
|
cpp_sig_symbols.in cpp_cnvt.awk
|
||||||
|
|
||||||
## 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
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.1l from Makefile.am
|
# Makefile.in generated automatically by automake 1.1n from Makefile.am
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
|
# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
# This Makefile.in is free software; the Free Software Foundation
|
||||||
|
@ -32,45 +32,56 @@ pkgincludedir = $(includedir)/@PACKAGE@
|
||||||
|
|
||||||
top_builddir = .
|
top_builddir = .
|
||||||
|
|
||||||
|
ACLOCAL = @ACLOCAL@
|
||||||
|
AUTOCONF = @AUTOCONF@
|
||||||
|
AUTOMAKE = @AUTOMAKE@
|
||||||
|
AUTOHEADER = @AUTOHEADER@
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
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@
|
||||||
host_triplet = @host@
|
|
||||||
|
NORMAL_INSTALL = true
|
||||||
|
PRE_INSTALL = true
|
||||||
|
POST_INSTALL = true
|
||||||
|
NORMAL_UNINSTALL = true
|
||||||
|
PRE_UNINSTALL = true
|
||||||
|
POST_UNINSTALL = true
|
||||||
host_alias = @host_alias@
|
host_alias = @host_alias@
|
||||||
LIBLOBJS = @LIBLOBJS@
|
host_triplet = @host@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
LIBTOOL = @LIBTOOL@
|
|
||||||
module = @module@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
RANLIB = @RANLIB@
|
LIBLOBJS = @LIBLOBJS@
|
||||||
|
LIBTOOL = @LIBTOOL@
|
||||||
MAINT = @MAINT@
|
MAINT = @MAINT@
|
||||||
xtra_PLUGIN_guile_libs = @xtra_PLUGIN_guile_libs@
|
|
||||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
|
RANLIB = @RANLIB@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
module = @module@
|
||||||
|
xtra_PLUGIN_guile_libs = @xtra_PLUGIN_guile_libs@
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
INCLUDES = -I.. -I$(srcdir)/..
|
INCLUDES = -I.. -I$(srcdir)/..
|
||||||
|
|
||||||
lib_PROGRAMS = libguile.la
|
lib_LTLIBRARIES = libguile.la
|
||||||
libguile_la_SOURCES = alist.c append.c appinit.c arbiters.c async.c \
|
libguile_la_SOURCES = alist.c append.c appinit.c arbiters.c async.c \
|
||||||
boolean.c chars.c continuations.c dynl.c dynwind.c eq.c \
|
boolean.c chars.c continuations.c dynl.c dynwind.c eq.c \
|
||||||
error.c eval.c extchrs.c feature.c filesys.c fports.c gc.c \
|
error.c eval.c extchrs.c feature.c filesys.c fports.c gc.c \
|
||||||
gdbint.c genio.c gsubr.c hash.c hashtab.c init.c ioext.c \
|
gdbint.c genio.c gsubr.c hash.c hashtab.c init.c ioext.c \
|
||||||
kw.c list.c load.c mallocs.c markers.c mbstrings.c net_db.c \
|
kw.c list.c load.c mallocs.c markers.c mbstrings.c net_db.c \
|
||||||
numbers.c objprop.c \
|
numbers.c objprop.c \
|
||||||
options.c pairs.c ports.c posix.c print.c procprop.c procs.c ramap.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 \
|
read.c root.c scmsigs.c sequences.c simpos.c smob.c socket.c \
|
||||||
stackchk.c stime.c strings.c strop.c strorder.c \
|
stackchk.c stime.c strings.c strop.c strorder.c \
|
||||||
strports.c struct.c symbols.c tag.c throw.c unif.c variable.c \
|
strports.c struct.c symbols.c tag.c throw.c unif.c variable.c \
|
||||||
vectors.c version.c vports.c weaks.c _scm.h
|
vectors.c version.c vports.c weaks.c _scm.h
|
||||||
EXTRA_libguile_la_SOURCES = backtrace.c stacks.c debug.c srcprop.c \
|
EXTRA_libguile_la_SOURCES = backtrace.c stacks.c debug.c srcprop.c \
|
||||||
strerror.c inet_aton.c putenv.c
|
strerror.c inet_aton.c putenv.c
|
||||||
libguile_la_DEPENDENCIES = @LIBLOBJS@
|
libguile_la_DEPENDENCIES = @LIBLOBJS@
|
||||||
libguile_la_LDADD = @LIBLOBJS@
|
libguile_la_LIBADD = @LIBLOBJS@
|
||||||
libguile_la_LDFLAGS = -version-info 0:0 -rpath $(libdir)
|
libguile_la_LDFLAGS = -version-info 0:0 -rpath $(libdir)
|
||||||
|
|
||||||
include_HEADERS = libguile.h
|
include_HEADERS = libguile.h
|
||||||
|
@ -78,25 +89,25 @@ 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 dynl.h dynwind.h eq.h \
|
backtrace.h boolean.h chars.h continuations.h debug.h dynl.h dynwind.h \
|
||||||
error.h eval.h extchrs.h feature.h filesys.h fports.h gc.h \
|
eq.h error.h eval.h extchrs.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 \
|
||||||
kw.h list.h load.h mallocs.h markers.h mbstrings.h net_db.h \
|
ioext.h kw.h list.h load.h mallocs.h markers.h mbstrings.h net_db.h \
|
||||||
numbers.h objprop.h \
|
numbers.h objprop.h options.h pairs.h ports.h posix.h print.h \
|
||||||
options.h pairs.h ports.h posix.h print.h procprop.h procs.h ramap.h read.h \
|
procprop.h procs.h ramap.h read.h root.h scmhob.h scmsigs.h \
|
||||||
root.h scmhob.h scmsigs.h sequences.h simpos.h smob.h socket.h srcprop.h \
|
sequences.h simpos.h smob.h socket.h srcprop.h stackchk.h stacks.h \
|
||||||
stackchk.h stacks.h stime.h strings.h strop.h strorder.h strports.h struct.h \
|
stime.h strings.h strop.h strorder.h strports.h struct.h symbols.h \
|
||||||
symbols.h tag.h tags.h throw.h unif.h variable.h vectors.h version.h \
|
tag.h tags.h throw.h unif.h variable.h vectors.h version.h vports.h \
|
||||||
vports.h weaks.h snarf.h
|
weaks.h snarf.h
|
||||||
|
|
||||||
modinclude_DATA = scmconfig.h
|
modinclude_DATA = scmconfig.h
|
||||||
|
|
||||||
bin_SCRIPTS = guile-snarf
|
bin_SCRIPTS = guile-snarf
|
||||||
|
|
||||||
EXTRA_DIST = gscm.c gscm.h ChangeLog-scm dynl-dl.c dynl-dld.c dynl-shl.c \
|
EXTRA_DIST = gscm.c gscm.h ChangeLog-scm dynl-dl.c dynl-dld.c dynl-shl.c \
|
||||||
dynl-vms.c DYNAMIC-LINKING PLUGIN/REQ PLUGIN/guile.config \
|
dynl-vms.c DYNAMIC-LINKING PLUGIN/REQ PLUGIN/guile.config \
|
||||||
PLUGIN/guile.libs.in cpp_signal.c cpp_errno.c cpp_err_symbols.in \
|
PLUGIN/guile.libs.in cpp_signal.c cpp_errno.c cpp_err_symbols.in \
|
||||||
cpp_sig_symbols.in cpp_cnvt.awk
|
cpp_sig_symbols.in cpp_cnvt.awk
|
||||||
|
|
||||||
SUFFIXES = .x
|
SUFFIXES = .x
|
||||||
|
|
||||||
|
@ -104,12 +115,13 @@ MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||||
|
|
||||||
CLEANFILES=cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new \
|
CLEANFILES=cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new \
|
||||||
cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new
|
cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new
|
||||||
ACLOCAL = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
CONFIG_HEADER_IN = scmconfig.h.in
|
CONFIG_HEADER_IN = scmconfig.h.in
|
||||||
|
CONFIG_HEADER_FULL = scmconfig.h
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
|
||||||
CONFIG_HEADER = scmconfig.h
|
CONFIG_HEADER = scmconfig.h
|
||||||
CONFIG_CLEAN_FILES = guile-snarf
|
CONFIG_CLEAN_FILES = guile-snarf
|
||||||
PROGRAMS = $(lib_PROGRAMS)
|
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||||
|
|
||||||
|
|
||||||
DEFS = @DEFS@ -I. -I$(srcdir) -I.
|
DEFS = @DEFS@ -I. -I$(srcdir) -I.
|
||||||
|
@ -130,6 +142,7 @@ SCRIPTS = $(bin_SCRIPTS)
|
||||||
|
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||||
|
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||||
LINK = $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@
|
LINK = $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@
|
||||||
DATA = $(modinclude_DATA)
|
DATA = $(modinclude_DATA)
|
||||||
|
|
||||||
|
@ -140,10 +153,10 @@ acinclude.m4 aclocal.m4 configure configure.in guile-snarf.in \
|
||||||
scmconfig.h.in stamp-h.in
|
scmconfig.h.in stamp-h.in
|
||||||
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
$(TEXINFOS) $(MANS) $(EXTRA_DIST)
|
|
||||||
|
|
||||||
TAR = tar
|
TAR = tar
|
||||||
|
GZIP = --best
|
||||||
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/dynl.P \
|
.deps/chars.P .deps/continuations.P .deps/debug.P .deps/dynl.P \
|
||||||
|
@ -169,30 +182,30 @@ default: all
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o .lo .x
|
.SUFFIXES: .c .o .lo .x
|
||||||
$(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL)
|
$(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && automake --foreign Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
$(srcdir)/aclocal.m4: @MAINT@configure.in acinclude.m4
|
$(srcdir)/aclocal.m4: @MAINT@ configure.in acinclude.m4
|
||||||
cd $(srcdir) && aclocal
|
cd $(srcdir) && $(ACLOCAL)
|
||||||
|
|
||||||
config.status: configure
|
config.status: configure
|
||||||
$(SHELL) ./config.status --recheck
|
$(SHELL) ./config.status --recheck
|
||||||
$(srcdir)/configure: @MAINT@configure.in $(ACLOCAL) $(CONFIGURE_DEPENDENCIES)
|
$(srcdir)/configure: @MAINT@configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
|
||||||
cd $(srcdir) && autoconf
|
cd $(srcdir) && $(AUTOCONF)
|
||||||
|
|
||||||
$(CONFIG_HEADER): stamp-h
|
$(CONFIG_HEADER): stamp-h
|
||||||
stamp-h: $(CONFIG_HEADER_IN) $(top_builddir)/config.status
|
stamp-h: $(CONFIG_HEADER_IN) $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES= CONFIG_HEADERS=$(CONFIG_HEADER) \
|
&& CONFIG_FILES= CONFIG_HEADERS=$(CONFIG_HEADER_FULL) \
|
||||||
$(SHELL) ./config.status
|
$(SHELL) ./config.status
|
||||||
@echo timestamp > stamp-h
|
@echo timestamp > stamp-h
|
||||||
$(srcdir)/$(CONFIG_HEADER_IN): @MAINT@stamp-h.in
|
$(srcdir)/$(CONFIG_HEADER_IN): @MAINT@stamp-h.in
|
||||||
$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL) acconfig.h
|
$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
|
||||||
cd $(top_srcdir) && autoheader
|
cd $(top_srcdir) && $(AUTOHEADER)
|
||||||
echo timestamp > $(srcdir)/stamp-h.in
|
echo timestamp > $(srcdir)/stamp-h.in
|
||||||
|
|
||||||
mostlyclean-hdr:
|
mostlyclean-hdr:
|
||||||
|
@ -206,27 +219,28 @@ maintainer-clean-hdr:
|
||||||
guile-snarf: $(top_builddir)/config.status guile-snarf.in
|
guile-snarf: $(top_builddir)/config.status guile-snarf.in
|
||||||
cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
|
cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
|
||||||
|
|
||||||
mostlyclean-libPROGRAMS:
|
mostlyclean-libLTLIBRARIES:
|
||||||
|
|
||||||
clean-libPROGRAMS:
|
clean-libLTLIBRARIES:
|
||||||
test -z "$(lib_PROGRAMS)" || rm -f $(lib_PROGRAMS)
|
test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||||
|
|
||||||
distclean-libPROGRAMS:
|
distclean-libLTLIBRARIES:
|
||||||
|
|
||||||
maintainer-clean-libPROGRAMS:
|
maintainer-clean-libLTLIBRARIES:
|
||||||
|
|
||||||
install-libPROGRAMS: $(lib_PROGRAMS)
|
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||||
$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(libdir)
|
$(mkinstalldirs) $(libdir)
|
||||||
@list="$(lib_PROGRAMS)"; for p in $$list; do \
|
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||||
if test -f $$p; then \
|
if test -f $$p; then \
|
||||||
echo "$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(libdir)/$$p"; \
|
echo "$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(libdir)/$$p"; \
|
||||||
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(libdir)/$$p; \
|
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(libdir)/$$p; \
|
||||||
else :; fi; \
|
else :; fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
uninstall-libPROGRAMS:
|
uninstall-libLTLIBRARIES:
|
||||||
list="$(lib_PROGRAMS)"; for p in $$list; do \
|
$(NORMAL_UNINSTALL)
|
||||||
|
list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||||
$(LIBTOOL) --mode=uninstall rm -f $(libdir)/$$p; \
|
$(LIBTOOL) --mode=uninstall rm -f $(libdir)/$$p; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -255,70 +269,73 @@ clean-libtool:
|
||||||
distclean-libtool:
|
distclean-libtool:
|
||||||
|
|
||||||
maintainer-clean-libtool:
|
maintainer-clean-libtool:
|
||||||
$(libguile_la_OBJECTS): scmconfig.h
|
|
||||||
|
|
||||||
libguile.la: $(libguile_la_OBJECTS) $(libguile_la_DEPENDENCIES)
|
libguile.la: $(libguile_la_OBJECTS) $(libguile_la_DEPENDENCIES)
|
||||||
$(LINK) $(libguile_la_LDFLAGS) $(libguile_la_OBJECTS) $(libguile_la_LDADD) $(LIBS)
|
$(LINK) -rpath lib $(libguile_la_LDFLAGS) $(libguile_la_OBJECTS) $(libguile_la_LIBADD) $(LIBS)
|
||||||
|
|
||||||
install-binSCRIPTS: $(bin_SCRIPTS)
|
install-binSCRIPTS: $(bin_SCRIPTS)
|
||||||
$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(bindir)
|
$(mkinstalldirs) $(bindir)
|
||||||
@list="$(bin_SCRIPTS)"; for p in $$list; do \
|
@list='$(bin_SCRIPTS)'; for p in $$list; do \
|
||||||
if test -f $$p; then \
|
if test -f $$p; then \
|
||||||
echo "$(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`"; \
|
echo " $(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`"; \
|
||||||
$(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
$(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
||||||
else if test -f $(srcdir)/$$p; then \
|
else if test -f $(srcdir)/$$p; then \
|
||||||
echo "$(INSTALL_SCRIPT) $(srcdir)/$$p $(bindir)/`echo $$p|sed '$(transform)'`"; \
|
echo " $(INSTALL_SCRIPT) $(srcdir)/$$p $(bindir)/`echo $$p|sed '$(transform)'`"; \
|
||||||
$(INSTALL_SCRIPT) $(srcdir)/$$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
$(INSTALL_SCRIPT) $(srcdir)/$$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
||||||
else :; fi; fi; \
|
else :; fi; fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
uninstall-binSCRIPTS:
|
uninstall-binSCRIPTS:
|
||||||
list="$(bin_SCRIPTS)"; for p in $$list; do \
|
$(NORMAL_UNINSTALL)
|
||||||
|
list='$(bin_SCRIPTS)'; for p in $$list; do \
|
||||||
rm -f $(bindir)/`echo $$p|sed '$(transform)'`; \
|
rm -f $(bindir)/`echo $$p|sed '$(transform)'`; \
|
||||||
done
|
done
|
||||||
|
|
||||||
install-modincludeDATA: $(modinclude_DATA)
|
install-modincludeDATA: $(modinclude_DATA)
|
||||||
$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(modincludedir)
|
$(mkinstalldirs) $(modincludedir)
|
||||||
@list="$(modinclude_DATA)"; for p in $$list; do \
|
@list='$(modinclude_DATA)'; for p in $$list; do \
|
||||||
if test -f $(srcdir)/$$p; then \
|
if test -f $(srcdir)/$$p; then \
|
||||||
echo "$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p"; \
|
echo " $(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p"; \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p; \
|
$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p; \
|
||||||
else if test -f $$p; then \
|
else if test -f $$p; then \
|
||||||
echo "$(INSTALL_DATA) $$p $(modincludedir)/$$p"; \
|
echo " $(INSTALL_DATA) $$p $(modincludedir)/$$p"; \
|
||||||
$(INSTALL_DATA) $$p $(modincludedir)/$$p; \
|
$(INSTALL_DATA) $$p $(modincludedir)/$$p; \
|
||||||
fi; fi; \
|
fi; fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
uninstall-modincludeDATA:
|
uninstall-modincludeDATA:
|
||||||
list="$(modinclude_DATA)"; for p in $$list; do \
|
$(NORMAL_UNINSTALL)
|
||||||
|
list='$(modinclude_DATA)'; for p in $$list; do \
|
||||||
rm -f $(modincludedir)/$$p; \
|
rm -f $(modincludedir)/$$p; \
|
||||||
done
|
done
|
||||||
|
|
||||||
install-includeHEADERS: $(include_HEADERS)
|
install-includeHEADERS: $(include_HEADERS)
|
||||||
$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(includedir)
|
$(mkinstalldirs) $(includedir)
|
||||||
@list="$(include_HEADERS)"; for p in $$list; do \
|
@list='$(include_HEADERS)'; for p in $$list; do \
|
||||||
echo "$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p"; \
|
echo " $(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p"; \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p; \
|
$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p; \
|
||||||
done
|
done
|
||||||
|
|
||||||
uninstall-includeHEADERS:
|
uninstall-includeHEADERS:
|
||||||
list="$(include_HEADERS)"; for p in $$list; do \
|
$(NORMAL_UNINSTALL)
|
||||||
|
list='$(include_HEADERS)'; for p in $$list; do \
|
||||||
rm -f $(includedir)/$$p; \
|
rm -f $(includedir)/$$p; \
|
||||||
done
|
done
|
||||||
|
|
||||||
install-modincludeHEADERS: $(modinclude_HEADERS)
|
install-modincludeHEADERS: $(modinclude_HEADERS)
|
||||||
$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(modincludedir)
|
$(mkinstalldirs) $(modincludedir)
|
||||||
@list="$(modinclude_HEADERS)"; for p in $$list; do \
|
@list='$(modinclude_HEADERS)'; for p in $$list; do \
|
||||||
echo "$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p"; \
|
echo " $(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p"; \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p; \
|
$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p; \
|
||||||
done
|
done
|
||||||
|
|
||||||
uninstall-modincludeHEADERS:
|
uninstall-modincludeHEADERS:
|
||||||
list="$(modinclude_HEADERS)"; for p in $$list; do \
|
$(NORMAL_UNINSTALL)
|
||||||
|
list='$(modinclude_HEADERS)'; for p in $$list; do \
|
||||||
rm -f $(modincludedir)/$$p; \
|
rm -f $(modincludedir)/$$p; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -330,11 +347,11 @@ ID: $(HEADERS) $(SOURCES)
|
||||||
TAGS: $(HEADERS) $(SOURCES) scmconfig.h.in $(TAGS_DEPENDENCIES)
|
TAGS: $(HEADERS) $(SOURCES) scmconfig.h.in $(TAGS_DEPENDENCIES)
|
||||||
tags=; \
|
tags=; \
|
||||||
here=`pwd`; \
|
here=`pwd`; \
|
||||||
list="$(SUBDIRS)"; for subdir in $$list; do \
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||||
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
|
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
|
||||||
done; \
|
done; \
|
||||||
test -z "$(ETAGS_ARGS)scmconfig.h.in$(SOURCES)$(HEADERS)$$tags" \
|
test -z "$(ETAGS_ARGS)scmconfig.h.in$(SOURCES)$(HEADERS)$$tags" \
|
||||||
|| cd $(srcdir) && etags $(ETAGS_ARGS) $$tags scmconfig.h.in $(SOURCES) $(HEADERS) -o $$here/TAGS
|
|| (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags scmconfig.h.in $(SOURCES) $(HEADERS) -o $$here/TAGS)
|
||||||
|
|
||||||
mostlyclean-tags:
|
mostlyclean-tags:
|
||||||
|
|
||||||
|
@ -351,7 +368,7 @@ distdir = $(PACKAGE)-$(VERSION)
|
||||||
# tarfile.
|
# tarfile.
|
||||||
distcheck: dist
|
distcheck: dist
|
||||||
rm -rf $(distdir)
|
rm -rf $(distdir)
|
||||||
$(TAR) zxf $(distdir).tar.gz
|
GZIP=$(GZIP) $(TAR) zxf $(distdir).tar.gz
|
||||||
mkdir $(distdir)/=build
|
mkdir $(distdir)/=build
|
||||||
mkdir $(distdir)/=inst
|
mkdir $(distdir)/=inst
|
||||||
dc_install_base=`cd $(distdir)/=inst && pwd`; \
|
dc_install_base=`cd $(distdir)/=inst && pwd`; \
|
||||||
|
@ -369,11 +386,11 @@ distcheck: dist
|
||||||
echo "========================"
|
echo "========================"
|
||||||
dist: distdir
|
dist: distdir
|
||||||
-chmod -R a+r $(distdir)
|
-chmod -R a+r $(distdir)
|
||||||
$(TAR) chozf $(distdir).tar.gz $(distdir)
|
GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
|
||||||
rm -rf $(distdir)
|
rm -rf $(distdir)
|
||||||
dist-all: distdir
|
dist-all: distdir
|
||||||
-chmod -R a+r $(distdir)
|
-chmod -R a+r $(distdir)
|
||||||
$(TAR) chozf $(distdir).tar.gz $(distdir)
|
GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
|
||||||
rm -rf $(distdir)
|
rm -rf $(distdir)
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
rm -rf $(distdir)
|
rm -rf $(distdir)
|
||||||
|
@ -381,7 +398,7 @@ distdir: $(DISTFILES)
|
||||||
-chmod 755 $(distdir)
|
-chmod 755 $(distdir)
|
||||||
here=`pwd`; distdir=`cd $(distdir) && pwd` \
|
here=`pwd`; distdir=`cd $(distdir) && pwd` \
|
||||||
&& cd $(srcdir) \
|
&& cd $(srcdir) \
|
||||||
&& automake --include-deps --build-dir=$$here --srcdir-name=$(srcdir) --output-dir=$$distdir --foreign
|
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(srcdir) --output-dir=$$distdir --foreign
|
||||||
$(mkinstalldirs) $(distdir)/PLUGIN
|
$(mkinstalldirs) $(distdir)/PLUGIN
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
|
@ -409,24 +426,24 @@ maintainer-clean-depend:
|
||||||
@echo "Computing dependencies for $<..."
|
@echo "Computing dependencies for $<..."
|
||||||
@o='o'; \
|
@o='o'; \
|
||||||
test -n "$o" && o='$$o'; \
|
test -n "$o" && o='$$o'; \
|
||||||
$(MKDEP) $< | sed "s/^\(.*\)\.o:/\1.$$o \1.l$$o:/" > $@
|
$(MKDEP) $< | sed "s,^\(.*\)\.o:,\1.$$o \1.l$$o $@:," > $@
|
||||||
info:
|
info:
|
||||||
dvi:
|
dvi:
|
||||||
check: all
|
check: all
|
||||||
$(MAKE)
|
$(MAKE)
|
||||||
installcheck:
|
installcheck:
|
||||||
install-exec: install-libPROGRAMS install-binSCRIPTS
|
install-exec: install-libLTLIBRARIES install-binSCRIPTS
|
||||||
$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
|
|
||||||
install-data: install-modincludeDATA install-includeHEADERS install-modincludeHEADERS
|
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-libPROGRAMS uninstall-binSCRIPTS uninstall-modincludeDATA uninstall-includeHEADERS uninstall-modincludeHEADERS
|
uninstall: uninstall-libLTLIBRARIES uninstall-binSCRIPTS uninstall-modincludeDATA uninstall-includeHEADERS uninstall-modincludeHEADERS
|
||||||
|
|
||||||
all: $(PROGRAMS) $(SCRIPTS) $(DATA) $(HEADERS) Makefile scmconfig.h
|
all: $(LTLIBRARIES) $(SCRIPTS) $(DATA) $(HEADERS) Makefile scmconfig.h
|
||||||
|
|
||||||
install-strip:
|
install-strip:
|
||||||
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
|
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
|
||||||
|
@ -449,20 +466,20 @@ distclean-generic:
|
||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||||
test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||||
mostlyclean: mostlyclean-hdr mostlyclean-libPROGRAMS \
|
mostlyclean: mostlyclean-hdr mostlyclean-libLTLIBRARIES \
|
||||||
mostlyclean-compile mostlyclean-libtool \
|
mostlyclean-compile mostlyclean-libtool \
|
||||||
mostlyclean-tags mostlyclean-depend mostlyclean-generic
|
mostlyclean-tags mostlyclean-depend mostlyclean-generic
|
||||||
|
|
||||||
clean: clean-hdr clean-libPROGRAMS clean-compile clean-libtool \
|
clean: clean-hdr clean-libLTLIBRARIES clean-compile clean-libtool \
|
||||||
clean-tags clean-depend clean-generic mostlyclean
|
clean-tags clean-depend clean-generic mostlyclean
|
||||||
|
|
||||||
distclean: distclean-hdr distclean-libPROGRAMS distclean-compile \
|
distclean: distclean-hdr distclean-libLTLIBRARIES distclean-compile \
|
||||||
distclean-libtool distclean-tags distclean-depend \
|
distclean-libtool distclean-tags distclean-depend \
|
||||||
distclean-generic clean
|
distclean-generic clean
|
||||||
rm -f config.status
|
rm -f config.status
|
||||||
rm -f libtool
|
rm -f libtool
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-hdr maintainer-clean-libPROGRAMS \
|
maintainer-clean: maintainer-clean-hdr maintainer-clean-libLTLIBRARIES \
|
||||||
maintainer-clean-compile maintainer-clean-libtool \
|
maintainer-clean-compile maintainer-clean-libtool \
|
||||||
maintainer-clean-tags maintainer-clean-depend \
|
maintainer-clean-tags maintainer-clean-depend \
|
||||||
maintainer-clean-generic distclean
|
maintainer-clean-generic distclean
|
||||||
|
@ -471,13 +488,14 @@ maintainer-clean: maintainer-clean-hdr maintainer-clean-libPROGRAMS \
|
||||||
rm -f config.status
|
rm -f config.status
|
||||||
|
|
||||||
.PHONY: default mostlyclean-hdr distclean-hdr clean-hdr \
|
.PHONY: default mostlyclean-hdr distclean-hdr clean-hdr \
|
||||||
maintainer-clean-hdr mostlyclean-libPROGRAMS distclean-libPROGRAMS \
|
maintainer-clean-hdr mostlyclean-libLTLIBRARIES \
|
||||||
clean-libPROGRAMS maintainer-clean-libPROGRAMS uninstall-libPROGRAMS \
|
distclean-libLTLIBRARIES clean-libLTLIBRARIES \
|
||||||
install-libPROGRAMS mostlyclean-compile distclean-compile clean-compile \
|
maintainer-clean-libLTLIBRARIES uninstall-libLTLIBRARIES \
|
||||||
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
|
install-libLTLIBRARIES mostlyclean-compile distclean-compile \
|
||||||
clean-libtool maintainer-clean-libtool uninstall-binSCRIPTS \
|
clean-compile maintainer-clean-compile mostlyclean-libtool \
|
||||||
install-binSCRIPTS uninstall-modincludeDATA install-modincludeDATA \
|
distclean-libtool clean-libtool maintainer-clean-libtool \
|
||||||
uninstall-includeHEADERS install-includeHEADERS \
|
uninstall-binSCRIPTS install-binSCRIPTS uninstall-modincludeDATA \
|
||||||
|
install-modincludeDATA uninstall-includeHEADERS install-includeHEADERS \
|
||||||
uninstall-modincludeHEADERS install-modincludeHEADERS tags \
|
uninstall-modincludeHEADERS install-modincludeHEADERS tags \
|
||||||
mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
|
mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
|
||||||
distdir mostlyclean-depend distclean-depend clean-depend \
|
distdir mostlyclean-depend distclean-depend clean-depend \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue