emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117380: Disable implicit texi rules in doc/


From: Glenn Morris
Subject: [Emacs-diffs] trunk r117380: Disable implicit texi rules in doc/
Date: Mon, 23 Jun 2014 06:26:00 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117380
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sun 2014-06-22 23:25:47 -0700
message:
  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.
modified:
  doc/emacs/ChangeLog            changelog-20091113204419-o5vbwnq5f7feedwu-6227
  doc/emacs/Makefile.in          
makefile.in-20091113204419-o5vbwnq5f7feedwu-6228
  doc/lispintro/ChangeLog        changelog-20091113204419-o5vbwnq5f7feedwu-6128
  doc/lispintro/Makefile.in      
makefile.in-20091113204419-o5vbwnq5f7feedwu-6130
  doc/lispref/ChangeLog          changelog-20091113204419-o5vbwnq5f7feedwu-6155
  doc/lispref/Makefile.in        
makefile.in-20091113204419-o5vbwnq5f7feedwu-6156
  doc/misc/ChangeLog             changelog-20091113204419-o5vbwnq5f7feedwu-6331
  doc/misc/Makefile.in           
makefile.in-20091113204419-o5vbwnq5f7feedwu-6287
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2014-06-15 00:17:21 +0000
+++ b/doc/emacs/ChangeLog       2014-06-23 06:25:47 +0000
@@ -1,3 +1,7 @@
+2014-06-23  Glenn Morris  <address@hidden>
+
+       * Makefile.in (%.texi): Disable implicit rules.
+
 2014-06-15  Glenn Morris  <address@hidden>
 
        * Makefile.in (bootstrap-clean): New.

=== modified file 'doc/emacs/Makefile.in'
--- a/doc/emacs/Makefile.in     2014-06-15 00:17:21 +0000
+++ b/doc/emacs/Makefile.in     2014-06-23 06:25:47 +0000
@@ -145,6 +145,9 @@
 ## The info/ directory exists in release tarfiles but not the repository.
 mkinfodir = @${MKDIR_P} ${buildinfodir}
 
+## Disable implicit rules.
+%.texi: ;
+
 .PHONY: info dvi html pdf ps
 
 .SUFFIXES: .ps .dvi

=== modified file 'doc/lispintro/ChangeLog'
--- a/doc/lispintro/ChangeLog   2014-06-15 00:17:21 +0000
+++ b/doc/lispintro/ChangeLog   2014-06-23 06:25:47 +0000
@@ -1,3 +1,7 @@
+2014-06-23  Glenn Morris  <address@hidden>
+
+       * Makefile.in (%.texi): Disable implicit rules.
+
 2014-06-15  Glenn Morris  <address@hidden>
 
        * Makefile.in (bootstrap-clean): New.

=== modified file 'doc/lispintro/Makefile.in'
--- a/doc/lispintro/Makefile.in 2014-06-15 00:17:21 +0000
+++ b/doc/lispintro/Makefile.in 2014-06-23 06:25:47 +0000
@@ -71,6 +71,9 @@
 srcs = ${srcdir}/emacs-lisp-intro.texi ${srcdir}/doclicense.texi \
   ${emacsdir}/emacsver.texi
 
+## Disable implicit rules.
+%.texi: ;
+
 .PHONY: info dvi html pdf ps
 
 .SUFFIXES: .ps .dvi

=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2014-06-21 19:45:59 +0000
+++ b/doc/lispref/ChangeLog     2014-06-23 06:25:47 +0000
@@ -1,3 +1,7 @@
+2014-06-23  Glenn Morris  <address@hidden>
+
+       * Makefile.in (%.texi): Disable implicit rules.
+
 2014-06-21  Eli Zaretskii  <address@hidden>
 
        * positions.texi (Screen Lines): Clarify how columns are counted

=== modified file 'doc/lispref/Makefile.in'
--- a/doc/lispref/Makefile.in   2014-06-15 00:17:21 +0000
+++ b/doc/lispref/Makefile.in   2014-06-23 06:25:47 +0000
@@ -126,6 +126,9 @@
 
 mkinfodir = @${MKDIR_P} ${buildinfodir}
 
+## Disable implicit rules.
+%.texi: ;
+
 .PHONY: info dvi pdf ps
 
 .SUFFIXES: .ps .dvi

=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2014-06-22 23:12:17 +0000
+++ b/doc/misc/ChangeLog        2014-06-23 06:25:47 +0000
@@ -1,3 +1,7 @@
+2014-06-23  Glenn Morris  <address@hidden>
+
+       * Makefile.in (%.texi): Disable implicit rules.
+
 2014-06-22  Mario Lang  <address@hidden>
 
        * srecode.texi (Base Arguments): The the -> to the.

=== modified file 'doc/misc/Makefile.in'
--- a/doc/misc/Makefile.in      2014-06-15 00:17:21 +0000
+++ b/doc/misc/Makefile.in      2014-06-23 06:25:47 +0000
@@ -107,6 +107,9 @@
 ## Prevent implicit rule triggering for foo.info.
 .SUFFIXES:
 
+## Disable implicit rules.
+%.texi: ;
+
 # Default.
 info: $(INFO_TARGETS)
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]