summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2004-02-09 01:48:34 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2004-02-09 01:48:34 +0000
commitf1dc5f45ab455339c02340d612af409ab9f51fc9 (patch)
tree60cea1bcd090141afcdd64d4d349f699fe86e760
parent16353acc6f0d025d4dc101d01285611d7162a0f4 (diff)
downloadguile-f1dc5f45ab455339c02340d612af409ab9f51fc9.tar.gz
* Makefile.am (TAGS_FILES): Use this variable instead of
ETAGS_ARGS so that TAGS can be built using separate build directory. * Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. * debugger/breakpoints/Makefile.am (TAGS_FILES), debugger/Makefile.am (TAGS_FILES), Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. * primitives/Makefile.am (TAGS_FILES), internals/Makefile.am (TAGS_FILES), Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. * Makefile.am, goops/Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. * Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory.
-rw-r--r--emacs/ChangeLog6
-rw-r--r--emacs/Makefile.am4
-rw-r--r--guile-readline/ChangeLog6
-rw-r--r--guile-readline/Makefile.am4
-rw-r--r--ice-9/ChangeLog7
-rw-r--r--ice-9/Makefile.am4
-rw-r--r--ice-9/debugger/Makefile.am4
-rw-r--r--ice-9/debugger/breakpoints/Makefile.am4
-rw-r--r--lang/elisp/ChangeLog7
-rw-r--r--lang/elisp/Makefile.am4
-rw-r--r--lang/elisp/internals/Makefile.am4
-rw-r--r--lang/elisp/primitives/Makefile.am4
-rw-r--r--oop/ChangeLog6
-rw-r--r--oop/Makefile.am4
-rw-r--r--oop/goops/Makefile.am4
-rw-r--r--srfi/ChangeLog6
-rw-r--r--srfi/Makefile.am4
17 files changed, 60 insertions, 22 deletions
diff --git a/emacs/ChangeLog b/emacs/ChangeLog
index 544065acd..3ddf384d1 100644
--- a/emacs/ChangeLog
+++ b/emacs/ChangeLog
@@ -1,3 +1,9 @@
+2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
+
+ * Makefile.am (TAGS_FILES): Use this variable instead of
+ ETAGS_ARGS so that TAGS can be built using separate build
+ directory.
+
2004-01-28 Neil Jerram <neil@ossau.uklinux.net>
* gds.el (gds-handle-client-input): Handle new `thread-status'
diff --git a/emacs/Makefile.am b/emacs/Makefile.am
index 981414f3f..c85ad1ca5 100644
--- a/emacs/Makefile.am
+++ b/emacs/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 2003 Free Software Foundation, Inc.
+## Copyright (C) 2003, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -34,5 +34,5 @@ info_TEXINFOS = gds.texi
TEXINFO_TEX = ../doc/ref/texinfo.tex
-ETAGS_ARGS = $(subpkgdata_DATA) $(lisp_LISP)
+TAGS_FILES = $(subpkgdata_DATA) $(lisp_LISP)
EXTRA_DIST = $(subpkgdata_DATA) $(lisp_LISP)
diff --git a/guile-readline/ChangeLog b/guile-readline/ChangeLog
index 1f448be35..8d94208bb 100644
--- a/guile-readline/ChangeLog
+++ b/guile-readline/ChangeLog
@@ -1,3 +1,9 @@
+2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
+
+ * Makefile.am (TAGS_FILES): Use this variable instead of
+ ETAGS_ARGS so that TAGS can be built using separate build
+ directory.
+
2003-05-04 Marius Vollmer <mvo@zagadka.de>
* configure.in: When checking whether readline clears SA_RESTART,
diff --git a/guile-readline/Makefile.am b/guile-readline/Makefile.am
index 84ecd1e62..5f5493099 100644
--- a/guile-readline/Makefile.am
+++ b/guile-readline/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with Automake to create Makefile.in
##
-## Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+## Copyright (C) 1998, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -51,7 +51,7 @@ SUFFIXES = .x
$(GUILE_SNARF) -o $@ $< $(snarfcppopts)
EXTRA_DIST = $(ice9_DATA) LIBGUILEREADLINE-VERSION
-ETAGS_ARGS = $(ice9_DATA)
+TAGS_FILES = $(ice9_DATA)
MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog
index 226e1881e..570426117 100644
--- a/ice-9/ChangeLog
+++ b/ice-9/ChangeLog
@@ -1,3 +1,10 @@
+2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
+
+ * debugger/breakpoints/Makefile.am (TAGS_FILES),
+ debugger/Makefile.am (TAGS_FILES), Makefile.am (TAGS_FILES): Use
+ this variable instead of ETAGS_ARGS so that TAGS can be built
+ using separate build directory.
+
2004-01-20 Neil Jerram <neil@ossau.uklinux.net>
* boot-9.scm (error-catching-loop): Back out 2003-11-19 change to
diff --git a/ice-9/Makefile.am b/ice-9/Makefile.am
index 1864a730a..46bc3db05 100644
--- a/ice-9/Makefile.am
+++ b/ice-9/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 1998,1999,2000,2001,2003 Free Software Foundation, Inc.
+## Copyright (C) 1998,1999,2000,2001,2003, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -39,7 +39,7 @@ ice9_sources = \
subpkgdatadir = $(pkgdatadir)/${GUILE_EFFECTIVE_VERSION}/ice-9
subpkgdata_DATA = $(ice9_sources)
-ETAGS_ARGS = $(subpkgdata_DATA)
+TAGS_FILES = $(subpkgdata_DATA)
## test.scm is not currently installed.
EXTRA_DIST = $(ice9_sources) test.scm compile-psyntax.scm
diff --git a/ice-9/debugger/Makefile.am b/ice-9/debugger/Makefile.am
index 0697378b4..9a9df1043 100644
--- a/ice-9/debugger/Makefile.am
+++ b/ice-9/debugger/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 2002 Free Software Foundation, Inc.
+## Copyright (C) 2002, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -29,6 +29,6 @@ ice9_debugger_sources = behaviour.scm breakpoints.scm command-loop.scm \
subpkgdatadir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)/ice-9/debugger
subpkgdata_DATA = $(ice9_debugger_sources)
-ETAGS_ARGS = $(subpkgdata_DATA)
+TAGS_FILES = $(subpkgdata_DATA)
EXTRA_DIST = $(ice9_debugger_sources)
diff --git a/ice-9/debugger/breakpoints/Makefile.am b/ice-9/debugger/breakpoints/Makefile.am
index 76be30790..e28c672a0 100644
--- a/ice-9/debugger/breakpoints/Makefile.am
+++ b/ice-9/debugger/breakpoints/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 2002 Free Software Foundation, Inc.
+## Copyright (C) 2002, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -24,5 +24,5 @@ AUTOMAKE_OPTIONS = gnu
subpkgdatadir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)/ice-9/debugger/breakpoints
subpkgdata_DATA = procedural.scm range.scm source.scm
-ETAGS_ARGS = $(subpkgdata_DATA)
+TAGS_FILES = $(subpkgdata_DATA)
EXTRA_DIST = $(subpkgdata_DATA)
diff --git a/lang/elisp/ChangeLog b/lang/elisp/ChangeLog
index 57a99e8a4..1114618d0 100644
--- a/lang/elisp/ChangeLog
+++ b/lang/elisp/ChangeLog
@@ -1,3 +1,10 @@
+2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
+
+ * primitives/Makefile.am (TAGS_FILES), internals/Makefile.am
+ (TAGS_FILES), Makefile.am (TAGS_FILES): Use this variable instead
+ of ETAGS_ARGS so that TAGS can be built using separate build
+ directory.
+
2003-11-01 Neil Jerram <neil@ossau.uklinux.net>
* internals/format.scm (format), internals/signal.scm (error),
diff --git a/lang/elisp/Makefile.am b/lang/elisp/Makefile.am
index 51ebeaf32..0a2561285 100644
--- a/lang/elisp/Makefile.am
+++ b/lang/elisp/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+## Copyright (C) 1998, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -34,6 +34,6 @@ elisp_sources = \
subpkgdatadir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)/lang/elisp
subpkgdata_DATA = $(elisp_sources)
-ETAGS_ARGS = $(subpkgdata_DATA)
+TAGS_FILES = $(subpkgdata_DATA)
EXTRA_DIST = $(elisp_sources)
diff --git a/lang/elisp/internals/Makefile.am b/lang/elisp/internals/Makefile.am
index b759212e5..34581f506 100644
--- a/lang/elisp/internals/Makefile.am
+++ b/lang/elisp/internals/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+## Copyright (C) 1998, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -37,6 +37,6 @@ elisp_sources = \
subpkgdatadir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)/lang/elisp/internals
subpkgdata_DATA = $(elisp_sources)
-ETAGS_ARGS = $(subpkgdata_DATA)
+TAGS_FILES = $(subpkgdata_DATA)
EXTRA_DIST = $(elisp_sources)
diff --git a/lang/elisp/primitives/Makefile.am b/lang/elisp/primitives/Makefile.am
index 152b63de5..1f15f41aa 100644
--- a/lang/elisp/primitives/Makefile.am
+++ b/lang/elisp/primitives/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+## Copyright (C) 1998, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -46,6 +46,6 @@ elisp_sources = \
subpkgdatadir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)/lang/elisp/primitives
subpkgdata_DATA = $(elisp_sources)
-ETAGS_ARGS = $(subpkgdata_DATA)
+TAGS_FILES = $(subpkgdata_DATA)
EXTRA_DIST = $(elisp_sources)
diff --git a/oop/ChangeLog b/oop/ChangeLog
index d79e625be..fb6744af9 100644
--- a/oop/ChangeLog
+++ b/oop/ChangeLog
@@ -1,3 +1,9 @@
+2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
+
+ * Makefile.am, goops/Makefile.am (TAGS_FILES): Use this variable
+ instead of ETAGS_ARGS so that TAGS can be built using separate
+ build directory.
+
2004-01-12 Marius Vollmer <mvo@zagadka.de>
* goops.scm (compute-get-n-set): Use '#:' in error message instead
diff --git a/oop/Makefile.am b/oop/Makefile.am
index 6107a959a..ba2a81099 100644
--- a/oop/Makefile.am
+++ b/oop/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 2000 Free Software Foundation, Inc.
+## Copyright (C) 2000, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -28,6 +28,6 @@ oop_sources = goops.scm
subpkgdatadir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)/oop
subpkgdata_DATA = $(oop_sources)
-ETAGS_ARGS = $(subpkgdata_DATA)
+TAGS_FILES = $(subpkgdata_DATA)
EXTRA_DIST = $(oop_sources)
diff --git a/oop/goops/Makefile.am b/oop/goops/Makefile.am
index 0229de8e9..125909e3b 100644
--- a/oop/goops/Makefile.am
+++ b/oop/goops/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in.
##
-## Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+## Copyright (C) 2000, 2001, 2004 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -29,6 +29,6 @@ goops_sources = \
subpkgdatadir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)/oop/goops
subpkgdata_DATA = $(goops_sources)
-ETAGS_ARGS = $(subpkgdata_DATA)
+TAGS_FILES = $(subpkgdata_DATA)
EXTRA_DIST = $(goops_sources)
diff --git a/srfi/ChangeLog b/srfi/ChangeLog
index 776734a03..3e255d44e 100644
--- a/srfi/ChangeLog
+++ b/srfi/ChangeLog
@@ -1,3 +1,9 @@
+2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
+
+ * Makefile.am (TAGS_FILES): Use this variable instead of
+ ETAGS_ARGS so that TAGS can be built using separate build
+ directory.
+
2004-01-24 Marius Vollmer <mvo@zagadka.de>
* Makefile.am (srfi_DATA): Added srfi-26.scm.
diff --git a/srfi/Makefile.am b/srfi/Makefile.am
index 791e8891c..13f9a53ce 100644
--- a/srfi/Makefile.am
+++ b/srfi/Makefile.am
@@ -71,8 +71,8 @@ srfi_DATA = srfi-1.scm \
srfi-26.scm \
srfi-34.scm
-EXTRA_DIST = $(srfi_DATA)
-ETAGS_ARGS = $(srfi_DATA)
+EXTRA_DIST = $(srfi_DATA)
+TAGS_FILES = $(srfi_DATA)
GUILE_SNARF = ../libguile/guile-snarf