Re: Automake and Texinfo: clean the info or pdf file

2010-09-03 Thread YuGiOhJCJ Mailing-List
On Tue, 31 Aug 2010 12:05:11 -0400 Alfred M. Szmidt a...@gnu.org wrote: If I call : $ make The .info file is built. If I call : $ make clean The .info file is not cleaned. It is the same thing for pdf, if I call : $

Re: Automake and Texinfo: clean the info or pdf file

2010-09-03 Thread Stefano Lattarini
On Friday 03 September 2010, YuGiOhJCJ Mailing wrote: On Tue, 31 Aug 2010 12:05:11 -0400 What target can help me to remove the .info file built with the make command? Why the Makefile is removed when I call the distclean target? Because it is generated by configure (well,

Re: Automake and Texinfo: clean the info or pdf file

2010-09-03 Thread Eric Blake
On 09/03/2010 11:07 AM, Stefano Lattarini wrote: Why the Makefile is removed when I call the distclean target? Because it is generated by configure And more particularly, because Makefile is machine-dependent and must NOT be part of a tarball. Remember, 'make distclean' is the process

Re: Automake and Texinfo: clean the info or pdf file

2010-09-01 Thread Steffen Dettmer
On Tue, Aug 31, 2010 at 7:57 PM, Eric Blake ebl...@redhat.com wrote: [...make distcheck' does a good job of...] separating maintainer issues (the 'make dist' portion) from the end user issues (the VPATH 'make check' build from a read-only srcdir portion). thanks for the detailed explanations

Re: Automake and Texinfo: clean the info or pdf file

2010-08-31 Thread Andrew W. Nosenko
On Tue, Aug 31, 2010 at 02:14, YuGiOhJCJ Mailing-List yugiohjcj-mailingl...@laposte.net wrote: On Mon, 30 Aug 2010 13:19:27 -0400 Alfred M. Szmidt a...@gnu.org wrote:    If I call :    $ make    The .info file is built.    If I call :    $ make clean    The .info file is not cleaned.

Re: Automake and Texinfo: clean the info or pdf file

2010-08-31 Thread YuGiOhJCJ Mailing-List
On Mon, 30 Aug 2010 19:54:04 +0200 Ralf Wildenhues ralf.wildenh...@gmx.de wrote: Hello, * YuGiOhJCJ Mailing-List wrote on Mon, Aug 30, 2010 at 05:41:40PM CEST: I work on a project which use automake and include a documentation in Texinfo format. If I call : $ make The .info

Re: Automake and Texinfo: clean the info or pdf file

2010-08-31 Thread Dave Hart
On Tue, Aug 31, 2010 at 09:57 UTC, someone yugiohjcj-mailingl...@laposte.net wrote: But my Makefile is also removed :-( So, I need to call the configure script to build it again. ./config.status will regenerate the Makefile without a full configure run. Cheers, Dave Hart

Re: Automake and Texinfo: clean the info or pdf file

2010-08-31 Thread Alfred M. Szmidt
If I call : $ make The .info file is built. If I call : $ make clean The .info file is not cleaned. It is the same thing for pdf, if I call : $ make pdf The .pdf file is built. If I call : $ make clean

Re: Automake and Texinfo: clean the info or pdf file

2010-08-31 Thread Alfred M. Szmidt
� �If I call : � �$ make � �The .info file is built. � �If I call : � �$ make clean � �The .info file is not cleaned. � �It is the same thing for pdf, if I call : � �$ make pdf � �The .pdf file is built. � �If I call : � �$ make clean �

Re: Automake and Texinfo: clean the info or pdf file

2010-08-31 Thread Steffen Dettmer
On Mon, Aug 30, 2010 at 7:54 PM, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: * YuGiOhJCJ Mailing-List wrote on Mon, Aug 30, 2010 at 05:41:40PM CEST: I work on a project which use automake and include a documentation in Texinfo format. If I call : $ make The .info file is built. In the

Re: Automake and Texinfo: clean the info or pdf file

2010-08-31 Thread Eric Blake
On 08/31/2010 11:46 AM, Steffen Dettmer wrote: On Mon, Aug 30, 2010 at 7:54 PM, Ralf Wildenhuesralf.wildenh...@gmx.de wrote: * YuGiOhJCJ Mailing-List wrote on Mon, Aug 30, 2010 at 05:41:40PM CEST: I work on a project which use automake and include a documentation in Texinfo format. If I call

Re: Automake and Texinfo: clean the info or pdf file

2010-08-31 Thread Eric Blake
On 08/31/2010 11:54 AM, Eric Blake wrote: make default target /creates/ files in the source directory? Yes, in the maintainer's tree. One other point - it is assumed that the maintainer's tree is _never_ read-only (that is, a maintainer rule that modifies srcdir is fine). Otherwise, how

Automake and Texinfo: clean the info or pdf file

2010-08-30 Thread YuGiOhJCJ Mailing-List
Hello, I work on a project which use automake and include a documentation in Texinfo format. If I call : $ make The .info file is built. If I call : $ make clean The .info file is not cleaned. It is the same thing for pdf, if I call : $ make pdf The .pdf file is built. If I call : $ make

Re: Automake and Texinfo: clean the info or pdf file

2010-08-30 Thread Ralf Wildenhues
Hello, * YuGiOhJCJ Mailing-List wrote on Mon, Aug 30, 2010 at 05:41:40PM CEST: I work on a project which use automake and include a documentation in Texinfo format. If I call : $ make The .info file is built. In the source tree (right?). And it will be distributed (with 'make dist').

Re: Automake and Texinfo: clean the info or pdf file

2010-08-30 Thread Alfred M. Szmidt
If I call : $ make The .info file is built. If I call : $ make clean The .info file is not cleaned. It is the same thing for pdf, if I call : $ make pdf The .pdf file is built. If I call : $ make clean The .pdf file is not cleaned. Is there a rule which

Re: Automake and Texinfo: clean the info or pdf file

2010-08-30 Thread YuGiOhJCJ Mailing-List
On Mon, 30 Aug 2010 13:19:27 -0400 Alfred M. Szmidt a...@gnu.org wrote: If I call : $ make The .info file is built. If I call : $ make clean The .info file is not cleaned. It is the same thing for pdf, if I call : $ make pdf The .pdf file is built.