[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Automake and Texinfo: clean the info or pdf file
From: |
Ralf Wildenhues |
Subject: |
Re: Automake and Texinfo: clean the info or pdf file |
Date: |
Mon, 30 Aug 2010 19:54:04 +0200 |
User-agent: |
Mutt/1.5.20 (2010-04-22) |
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').
> If I call :
> $ make clean
> The .info file is not cleaned.
Nope, because it is distributed. Distributed things are usually cleaned
with maintainer-clean; or distclean. This makes more sense if you
consider that, users that download tarballs of your package, will
already have the info file after extraction; it's then only logical that
'make clean' should not remove it. See also 'info Automake Clean'.
> It is the same thing for pdf, if I call :
> $ make pdf
> The .pdf file is built.
In the build tree. But not distributed.
> If I call :
> $ make clean
> The .pdf file is not cleaned.
That's weird. It should be cleaned, and over here, it is. Can you send
a small example setup to reproduce this? Which automake version do you
use?
Thanks,
Ralf