mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 20:30:28 +02:00
updated to automake 1.1l
This commit is contained in:
parent
adb75a4155
commit
85e02c55a9
6 changed files with 43 additions and 33 deletions
23
Makefile.in
23
Makefile.in
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.1k from Makefile.am
|
# Makefile.in generated automatically by automake 1.1l 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
|
||||||
|
@ -37,7 +37,10 @@ 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@
|
||||||
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
existingdirs = @existingdirs@
|
existingdirs = @existingdirs@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SUBDIRS = @existingdirs@ doc
|
SUBDIRS = @existingdirs@ doc
|
||||||
|
|
||||||
|
@ -57,9 +60,6 @@ Makefile.in NEWS README TODO aclocal.m4 config.guess config.sub \
|
||||||
configure configure.in install-sh mdate-sh mkinstalldirs
|
configure configure.in install-sh mdate-sh mkinstalldirs
|
||||||
|
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
||||||
$(TEXINFOS) $(MANS) $(EXTRA_DIST)
|
$(TEXINFOS) $(MANS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -67,8 +67,8 @@ TAR = tar
|
||||||
default: all
|
default: all
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL)
|
||||||
cd $(top_srcdir) && automake --foreign Makefile
|
cd $(top_srcdir) && automake --gnu 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) \
|
||||||
|
@ -85,10 +85,12 @@ $(srcdir)/configure: configure.in $(ACLOCAL) $(CONFIGURE_DEPENDENCIES)
|
||||||
install-aclocalDATA: $(aclocal_DATA)
|
install-aclocalDATA: $(aclocal_DATA)
|
||||||
$(NORMAL_INSTALL)
|
$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(aclocaldir)
|
$(mkinstalldirs) $(aclocaldir)
|
||||||
list="$(aclocal_DATA)"; for p in $$list; do \
|
@list="$(aclocal_DATA)"; for p in $$list; do \
|
||||||
if test -f $(srcdir)/$$p; then \
|
if test -f $(srcdir)/$$p; then \
|
||||||
|
echo "$(INSTALL_DATA) $(srcdir)/$$p $(aclocaldir)/$$p"; \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$p $(aclocaldir)/$$p; \
|
$(INSTALL_DATA) $(srcdir)/$$p $(aclocaldir)/$$p; \
|
||||||
else if test -f $$p; then \
|
else if test -f $$p; then \
|
||||||
|
echo "$(INSTALL_DATA) $$p $(aclocaldir)/$$p"; \
|
||||||
$(INSTALL_DATA) $$p $(aclocaldir)/$$p; \
|
$(INSTALL_DATA) $$p $(aclocaldir)/$$p; \
|
||||||
fi; fi; \
|
fi; fi; \
|
||||||
done
|
done
|
||||||
|
@ -112,9 +114,10 @@ installdirs-recursive install-recursive uninstall-recursive \
|
||||||
check-recursive installcheck-recursive info-recursive dvi-recursive \
|
check-recursive installcheck-recursive info-recursive dvi-recursive \
|
||||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
mostlyclean-recursive clean-recursive distclean-recursive \
|
||||||
maintainer-clean-recursive:
|
maintainer-clean-recursive:
|
||||||
for subdir in $(SUBDIRS); do \
|
@for subdir in $(SUBDIRS); do \
|
||||||
target=`echo $@ | sed s/-recursive//`; \
|
target=`echo $@ | sed s/-recursive//`; \
|
||||||
(cd $$subdir && $(MAKE) $$target) \
|
echo "Making $$target in $$subdir"; \
|
||||||
|
(cd $$subdir && $(MAKE) $$target) \
|
||||||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
||||||
done && test -z "$$fail"
|
done && test -z "$$fail"
|
||||||
tags-recursive:
|
tags-recursive:
|
||||||
|
@ -161,7 +164,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 --gnu
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
test -f $(distdir)/$$file \
|
test -f $(distdir)/$$file \
|
||||||
|
|
2
aclocal.m4
vendored
2
aclocal.m4
vendored
|
@ -1,4 +1,4 @@
|
||||||
dnl aclocal.m4 generated automatically by aclocal 1.1k
|
dnl aclocal.m4 generated automatically by aclocal 1.1l
|
||||||
|
|
||||||
# Do all the work for Automake. This macro actually does too much --
|
# Do all the work for Automake. This macro actually does too much --
|
||||||
# some checks are only needed if your package does certain things.
|
# some checks are only needed if your package does certain things.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.1k from Makefile.am
|
# Makefile.in generated automatically by automake 1.1l 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
|
||||||
|
@ -37,6 +37,10 @@ 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@
|
||||||
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
module = @module@
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
|
@ -54,9 +58,6 @@ DIST_COMMON = COPYING ChangeLog Makefile.am Makefile.in aclocal.m4 \
|
||||||
configure configure.in
|
configure configure.in
|
||||||
|
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
||||||
$(TEXINFOS) $(MANS) $(EXTRA_DIST)
|
$(TEXINFOS) $(MANS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -64,7 +65,7 @@ TAR = tar
|
||||||
default: all
|
default: all
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL)
|
||||||
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)
|
||||||
|
@ -82,10 +83,12 @@ $(srcdir)/configure: configure.in $(ACLOCAL) $(CONFIGURE_DEPENDENCIES)
|
||||||
install-subpkgdataDATA: $(subpkgdata_DATA)
|
install-subpkgdataDATA: $(subpkgdata_DATA)
|
||||||
$(NORMAL_INSTALL)
|
$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(subpkgdatadir)
|
$(mkinstalldirs) $(subpkgdatadir)
|
||||||
list="$(subpkgdata_DATA)"; for p in $$list; do \
|
@list="$(subpkgdata_DATA)"; for p in $$list; do \
|
||||||
if test -f $(srcdir)/$$p; then \
|
if test -f $(srcdir)/$$p; then \
|
||||||
|
echo "$(INSTALL_DATA) $(srcdir)/$$p $(subpkgdatadir)/$$p"; \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$p $(subpkgdatadir)/$$p; \
|
$(INSTALL_DATA) $(srcdir)/$$p $(subpkgdatadir)/$$p; \
|
||||||
else if test -f $$p; then \
|
else if test -f $$p; then \
|
||||||
|
echo "$(INSTALL_DATA) $$p $(subpkgdatadir)/$$p"; \
|
||||||
$(INSTALL_DATA) $$p $(subpkgdatadir)/$$p; \
|
$(INSTALL_DATA) $$p $(subpkgdatadir)/$$p; \
|
||||||
fi; fi; \
|
fi; fi; \
|
||||||
done
|
done
|
||||||
|
|
2
ice-9/aclocal.m4
vendored
2
ice-9/aclocal.m4
vendored
|
@ -1,4 +1,4 @@
|
||||||
dnl aclocal.m4 generated automatically by aclocal 1.1k
|
dnl aclocal.m4 generated automatically by aclocal 1.1l
|
||||||
|
|
||||||
|
|
||||||
dnl Usage: AM_INIT_GUILE_MODULE(module-name)
|
dnl Usage: AM_INIT_GUILE_MODULE(module-name)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.1k from Makefile.am
|
# Makefile.in generated automatically by automake 1.1l 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
|
||||||
|
@ -37,17 +37,21 @@ 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_alias = @host_alias@
|
|
||||||
host_triplet = @host@
|
host_triplet = @host@
|
||||||
RANLIB = @RANLIB@
|
host_alias = @host_alias@
|
||||||
qtmd_h = @qtmd_h@
|
target_libs = @target_libs@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
module = @module@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
qtmds_o = @qtmds_o@
|
qtmds_o = @qtmds_o@
|
||||||
qtmdc_o = @qtmdc_o@
|
qtmdc_o = @qtmdc_o@
|
||||||
target_libs = @target_libs@
|
RANLIB = @RANLIB@
|
||||||
qtmds_s = @qtmds_s@
|
|
||||||
qtmdc_c = @qtmdc_c@
|
|
||||||
qtmdb_s = @qtmdb_s@
|
qtmdb_s = @qtmdb_s@
|
||||||
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||||
|
qtmdc_c = @qtmdc_c@
|
||||||
|
qtmds_s = @qtmds_s@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
|
qtmd_h = @qtmd_h@
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
|
@ -81,9 +85,6 @@ DIST_COMMON = README ChangeLog INSTALL Makefile.am Makefile.in README \
|
||||||
aclocal.m4 configure configure.in qt.h.in
|
aclocal.m4 configure configure.in qt.h.in
|
||||||
|
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
|
||||||
VERSION = @VERSION@
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
||||||
$(TEXINFOS) $(MANS) $(EXTRA_DIST)
|
$(TEXINFOS) $(MANS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -96,7 +97,7 @@ default: all
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o
|
.SUFFIXES: .c .o
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL)
|
||||||
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)
|
||||||
|
@ -127,12 +128,14 @@ install-libLIBRARIES: $(lib_LIBRARIES)
|
||||||
$(mkinstalldirs) $(libdir)
|
$(mkinstalldirs) $(libdir)
|
||||||
list="$(lib_LIBRARIES)"; for p in $$list; do \
|
list="$(lib_LIBRARIES)"; for p in $$list; do \
|
||||||
if test -f $$p; then \
|
if test -f $$p; then \
|
||||||
|
echo "$(INSTALL_DATA) $$p $(libdir)/$$p"; \
|
||||||
$(INSTALL_DATA) $$p $(libdir)/$$p; \
|
$(INSTALL_DATA) $$p $(libdir)/$$p; \
|
||||||
else :; fi; \
|
else :; fi; \
|
||||||
done
|
done
|
||||||
$(POST_INSTALL)
|
$(POST_INSTALL)
|
||||||
list="$(lib_LIBRARIES)"; for p in $$list; do \
|
@list="$(lib_LIBRARIES)"; for p in $$list; do \
|
||||||
if test -f $$p; then \
|
if test -f $$p; then \
|
||||||
|
echo "$(RANLIB) $(libdir)/$$p"; \
|
||||||
$(RANLIB) $(libdir)/$$p; \
|
$(RANLIB) $(libdir)/$$p; \
|
||||||
else :; fi; \
|
else :; fi; \
|
||||||
done
|
done
|
||||||
|
@ -174,9 +177,10 @@ installdirs-recursive install-recursive uninstall-recursive \
|
||||||
check-recursive installcheck-recursive info-recursive dvi-recursive \
|
check-recursive installcheck-recursive info-recursive dvi-recursive \
|
||||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
mostlyclean-recursive clean-recursive distclean-recursive \
|
||||||
maintainer-clean-recursive:
|
maintainer-clean-recursive:
|
||||||
for subdir in $(SUBDIRS); do \
|
@for subdir in $(SUBDIRS); do \
|
||||||
target=`echo $@ | sed s/-recursive//`; \
|
target=`echo $@ | sed s/-recursive//`; \
|
||||||
(cd $$subdir && $(MAKE) $$target) \
|
echo "Making $$target in $$subdir"; \
|
||||||
|
(cd $$subdir && $(MAKE) $$target) \
|
||||||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
|
||||||
done && test -z "$$fail"
|
done && test -z "$$fail"
|
||||||
tags-recursive:
|
tags-recursive:
|
||||||
|
|
2
qt/aclocal.m4
vendored
2
qt/aclocal.m4
vendored
|
@ -1,4 +1,4 @@
|
||||||
dnl aclocal.m4 generated automatically by aclocal 1.1k
|
dnl aclocal.m4 generated automatically by aclocal 1.1l
|
||||||
|
|
||||||
|
|
||||||
dnl Usage: AM_INIT_GUILE_MODULE(module-name)
|
dnl Usage: AM_INIT_GUILE_MODULE(module-name)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue