diff options
| author | Glenn Morris | 2014-06-22 23:25:47 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-06-22 23:25:47 -0700 |
| commit | b8e83630600697e205c8f919f8ed6d44bcf5c647 (patch) | |
| tree | 29d0b8dab900f66183d082810b991c5aa9533001 | |
| parent | cc43334a3e3dd1937a9f43ebbdaa89297fc34a1c (diff) | |
| download | emacs-b8e83630600697e205c8f919f8ed6d44bcf5c647.tar.gz emacs-b8e83630600697e205c8f919f8ed6d44bcf5c647.zip | |
Disable implicit texi rules in doc/
* doc/emacs/Makefile.in (%.texi):
* doc/lispintro/Makefile.in (%.texi):
* doc/lispref/Makefile.in (%.texi):
* doc/misc/Makefile.in (%.texi):
Disable implicit rules.
| -rw-r--r-- | doc/emacs/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/emacs/Makefile.in | 3 | ||||
| -rw-r--r-- | doc/lispintro/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispintro/Makefile.in | 3 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/Makefile.in | 3 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/Makefile.in | 3 |
8 files changed, 28 insertions, 0 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index c7fe1dfbff5..65f2db31d84 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-06-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (%.texi): Disable implicit rules. | ||
| 4 | |||
| 1 | 2014-06-15 Glenn Morris <rgm@gnu.org> | 5 | 2014-06-15 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * Makefile.in (bootstrap-clean): New. | 7 | * Makefile.in (bootstrap-clean): New. |
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in index ffbfda7db82..91f4d655c08 100644 --- a/doc/emacs/Makefile.in +++ b/doc/emacs/Makefile.in | |||
| @@ -145,6 +145,9 @@ EMACSSOURCES= \ | |||
| 145 | ## The info/ directory exists in release tarfiles but not the repository. | 145 | ## The info/ directory exists in release tarfiles but not the repository. |
| 146 | mkinfodir = @${MKDIR_P} ${buildinfodir} | 146 | mkinfodir = @${MKDIR_P} ${buildinfodir} |
| 147 | 147 | ||
| 148 | ## Disable implicit rules. | ||
| 149 | %.texi: ; | ||
| 150 | |||
| 148 | .PHONY: info dvi html pdf ps | 151 | .PHONY: info dvi html pdf ps |
| 149 | 152 | ||
| 150 | .SUFFIXES: .ps .dvi | 153 | .SUFFIXES: .ps .dvi |
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index 318daf3e7a7..53271427afa 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-06-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (%.texi): Disable implicit rules. | ||
| 4 | |||
| 1 | 2014-06-15 Glenn Morris <rgm@gnu.org> | 5 | 2014-06-15 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * Makefile.in (bootstrap-clean): New. | 7 | * Makefile.in (bootstrap-clean): New. |
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in index 08506cfbc75..8f9b2eec279 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in | |||
| @@ -71,6 +71,9 @@ mkinfodir = @${MKDIR_P} ${buildinfodir} | |||
| 71 | srcs = ${srcdir}/emacs-lisp-intro.texi ${srcdir}/doclicense.texi \ | 71 | srcs = ${srcdir}/emacs-lisp-intro.texi ${srcdir}/doclicense.texi \ |
| 72 | ${emacsdir}/emacsver.texi | 72 | ${emacsdir}/emacsver.texi |
| 73 | 73 | ||
| 74 | ## Disable implicit rules. | ||
| 75 | %.texi: ; | ||
| 76 | |||
| 74 | .PHONY: info dvi html pdf ps | 77 | .PHONY: info dvi html pdf ps |
| 75 | 78 | ||
| 76 | .SUFFIXES: .ps .dvi | 79 | .SUFFIXES: .ps .dvi |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 3b7ca9c7288..813f1f5d5b7 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-06-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (%.texi): Disable implicit rules. | ||
| 4 | |||
| 1 | 2014-06-21 Eli Zaretskii <eliz@gnu.org> | 5 | 2014-06-21 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * positions.texi (Screen Lines): Clarify how columns are counted | 7 | * positions.texi (Screen Lines): Clarify how columns are counted |
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in index c97ce97c9ff..f468a31cb42 100644 --- a/doc/lispref/Makefile.in +++ b/doc/lispref/Makefile.in | |||
| @@ -126,6 +126,9 @@ srcs = \ | |||
| 126 | 126 | ||
| 127 | mkinfodir = @${MKDIR_P} ${buildinfodir} | 127 | mkinfodir = @${MKDIR_P} ${buildinfodir} |
| 128 | 128 | ||
| 129 | ## Disable implicit rules. | ||
| 130 | %.texi: ; | ||
| 131 | |||
| 129 | .PHONY: info dvi pdf ps | 132 | .PHONY: info dvi pdf ps |
| 130 | 133 | ||
| 131 | .SUFFIXES: .ps .dvi | 134 | .SUFFIXES: .ps .dvi |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 63cfef5de9f..a6b87020733 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-06-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (%.texi): Disable implicit rules. | ||
| 4 | |||
| 1 | 2014-06-22 Mario Lang <mlang@delysid.org> | 5 | 2014-06-22 Mario Lang <mlang@delysid.org> |
| 2 | 6 | ||
| 3 | * srecode.texi (Base Arguments): The the -> to the. | 7 | * srecode.texi (Base Arguments): The the -> to the. |
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in index d191534c2de..53537122cef 100644 --- a/doc/misc/Makefile.in +++ b/doc/misc/Makefile.in | |||
| @@ -107,6 +107,9 @@ gfdl = ${srcdir}/doclicense.texi | |||
| 107 | ## Prevent implicit rule triggering for foo.info. | 107 | ## Prevent implicit rule triggering for foo.info. |
| 108 | .SUFFIXES: | 108 | .SUFFIXES: |
| 109 | 109 | ||
| 110 | ## Disable implicit rules. | ||
| 111 | %.texi: ; | ||
| 112 | |||
| 110 | # Default. | 113 | # Default. |
| 111 | info: $(INFO_TARGETS) | 114 | info: $(INFO_TARGETS) |
| 112 | 115 | ||