* doc/misc/Makefile.in (maintainer-clean): Remove harmless, long-standing error.
* doc/lispref/Makefile.in (infoclean): Remove harmless, long-standing error.
* doc/lispintro/Makefile.in (infoclean): Remove harmless, long-standing error.
* doc/emacs/Makefile.in (infoclean): Remove harmless, long-standing error.
2010-10-09 Glenn Morris <rgm@gnu.org>
+ * Makefile.in (infoclean): Remove harmless, long-standing error.
+
* Makefile.in ($(infodir)): Delete rule.
(mkinfodir): New.
($(infodir)/emacs): Use $mkinfodir instead of infodir.
## In the standalone tarfile, the clean rule runs this.
infoclean:
- -cd $(infodir) && rm -f emacs emacs-[1-9] emacs-[1-9][0-9]
+ -cd $(srcdir) && cd $(infodir) && rm -f emacs emacs-[1-9] emacs-[1-9][0-9]
maintainer-clean: distclean infoclean
2010-10-09 Glenn Morris <rgm@gnu.org>
+ * Makefile.in (infoclean): Remove harmless, long-standing error.
+
* Makefile.in ($(infodir)): Delete rule.
(mkinfodir): New.
($(infodir)/eintr): Use $mkinfodir instead of infodir.
distclean: clean
infoclean:
- -cd $(infodir) && rm -f eintr eintr-[1-9]
+ -cd $(srcdir) && cd $(infodir) && rm -f eintr eintr-[1-9]
maintainer-clean: distclean infoclean
2010-10-09 Glenn Morris <rgm@gnu.org>
+ * Makefile.in (infoclean): Remove harmless, long-standing error.
+
* Makefile.in ($(infodir)): Delete rule.
(mkinfodir): New.
($(infodir)/elisp): Use $mkinfodir instead of infodir.
distclean: clean
infoclean:
- -cd $(infodir) && rm -f elisp elisp-[1-9] elisp-[1-9][0-9]
+ -cd $(srcdir) && cd $(infodir) && rm -f elisp elisp-[1-9] elisp-[1-9][0-9]
maintainer-clean: distclean infoclean
2010-10-09 Glenn Morris <rgm@gnu.org>
+ * Makefile.in (maintainer-clean): Remove harmless, long-standing error.
+
* Makefile.in ($(infodir)): Delete rule.
(mkinfodir): New. Use it in all the info rules, rather than depending
on infodir.
distclean: clean
# rm -f Makefile
+## infodir is relative to srcdir.
maintainer-clean: distclean
- for file in $(INFO_TARGETS); do \
+ cd $(srcdir); for file in $(INFO_TARGETS); do \
rm -f $${file} $${file}-[1-9] $${file}-[1-9][0-9]; \
done