diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2004-02-09 01:48:34 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2004-02-09 01:48:34 +0000 |
commit | f1dc5f45ab455339c02340d612af409ab9f51fc9 (patch) | |
tree | 60cea1bcd090141afcdd64d4d349f699fe86e760 /lang | |
parent | 16353acc6f0d025d4dc101d01285611d7162a0f4 (diff) | |
download | guile-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.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/elisp/ChangeLog | 7 | ||||
-rw-r--r-- | lang/elisp/Makefile.am | 4 | ||||
-rw-r--r-- | lang/elisp/internals/Makefile.am | 4 | ||||
-rw-r--r-- | lang/elisp/primitives/Makefile.am | 4 |
4 files changed, 13 insertions, 6 deletions
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) |