aboutsummaryrefslogtreecommitdiff
path: root/gas/Makefile.in
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2004-05-07 06:23:54 +0000
committerDaniel Jacobowitz <drow@false.org>2004-05-07 06:23:54 +0000
commitbfbdcf04741c333ad931f22cbedf38cdcab8c2fe (patch)
tree357c984a72552f9b59f685faa0a19a446a690cf1 /gas/Makefile.in
parent34f75cc19f3ab1dfb345b07e19fe298d26124396 (diff)
downloadgdb-bfbdcf04741c333ad931f22cbedf38cdcab8c2fe.zip
gdb-bfbdcf04741c333ad931f22cbedf38cdcab8c2fe.tar.gz
gdb-bfbdcf04741c333ad931f22cbedf38cdcab8c2fe.tar.bz2
* Makefile.am (DIST_SUBDIRS): Define.
* aclocal.m4: Regenerate with automake 1.8.4. * Makefile.in: Likewise. * doc/Makefile.in: Likewise.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r--gas/Makefile.in17
1 files changed, 12 insertions, 5 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in
index b0c4a8f..6306d6e 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.8.2 from Makefile.am.
+# Makefile.in generated by automake 1.8.4 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
@@ -244,6 +244,9 @@ target_vendor = @target_vendor@
te_file = @te_file@
AUTOMAKE_OPTIONS = 1.8 cygnus dejagnu
SUBDIRS = doc po
+# Automake should figure this out on its own. It doesn't, because
+# of the "cygnus" option. But distclean still wants it.
+DIST_SUBDIRS = $(SUBDIRS)
tooldir = $(exec_prefix)/$(target_alias)
AM_CFLAGS = $(WARN_CFLAGS)
MKDEP = gcc -MM
@@ -2725,10 +2728,12 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.in $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
- if (etags --etags-include --version) >/dev/null 2>&1; then \
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
include_option=--etags-include; \
+ empty_fix=.; \
else \
include_option=--include; \
+ empty_fix=; \
fi; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
@@ -2742,9 +2747,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.in $(TAGS_DEPENDENCIES) \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
- test -z "$(ETAGS_ARGS)$$tags$$unique" \
- || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
- $$tags $$unique
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
+ test -z "$$unique" && unique=$$empty_fix; \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$tags $$unique; \
+ fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.in $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)