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 /doc/misc | |
| 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.
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/Makefile.in | 3 |
2 files changed, 7 insertions, 0 deletions
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 | ||