aboutsummaryrefslogtreecommitdiff
path: root/binutils/doc/Makefile.in
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2020-03-06 22:06:34 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2020-03-06 22:06:34 -0500
commit9979ab666354f355da46ba826a3efeef9fbb8b24 (patch)
tree5fdb9c993a27b7dc03cb5f6167d99316af3b8293 /binutils/doc/Makefile.in
parent12e4371ae41c3e162e3051a0f6507481a8f37333 (diff)
downloadgdb-9979ab666354f355da46ba826a3efeef9fbb8b24.zip
gdb-9979ab666354f355da46ba826a3efeef9fbb8b24.tar.gz
gdb-9979ab666354f355da46ba826a3efeef9fbb8b24.tar.bz2
binutils: doc: move artifacts back to MAINTAINERCLEANFILES
In commit 2b44a6a237 (" binutils: doc: make `make clean` clean more things"), I moved the doc build artifacts to MOSTLYCLEANFILES, which made them get removed by "make clean". Because generating binutils.info requires makeinfo, and we do not want to require makeinfo when building from the tarball, binutils.info should not get removed by "make clean" (otherwise, it won't be included in the tarball). And to be consistent with other projects (e.g. ld and gas), we also want to ship the built man pages in the tarball. This patch puts back all these in MAINTAINERCLEANFILES, so that they are bundled in the tarball, and only cleaned if you use "make maintainer-clean". Tested by building a source release and confirming they are present. binutils/ChangeLog: PR 25491 * doc/Makefile.am: Rename MOSTLYCLEANFILES to MAINTAINERCLEANFILES. * doc/Makefile.in: Re-generate.
Diffstat (limited to 'binutils/doc/Makefile.in')
-rw-r--r--binutils/doc/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in
index b0e7b7b..b00260b 100644
--- a/binutils/doc/Makefile.in
+++ b/binutils/doc/Makefile.in
@@ -429,7 +429,7 @@ AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
-I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
-MOSTLYCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
+MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
all: all-am
.SUFFIXES:
@@ -712,7 +712,6 @@ install-strip:
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
- -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
clean-generic:
@@ -723,6 +722,7 @@ distclean-generic:
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
+ -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-am
clean-am: clean-aminfo clean-generic clean-libtool mostlyclean-am