Re: Install question

2002-01-24 Thread Alexandre Duret-Lutz
>>> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: [...] adl> EXTRA_PROGRAMS = ex1 ex2 adl> ex1_SOURCES = ex1.cpp adl> ex2_SOURCES = ex2.cpp adl> check-examples: $(EXTRA_PROGRAMS) Or even: check_PROGRAMS = ex1 ex2 ex1_SOURCES = ex1.cpp ex2_SOURCES = ex2.cpp This will compile ex

Re: Install question

2002-01-24 Thread Patrick Guio
On Thu, 24 Jan 2002, Alexandre Duret-Lutz wrote: > >>> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: > > [...] > > adl> EXTRA_PROGRAMS = ex1 ex2 > adl> ex1_SOURCES = ex1.cpp > adl> ex2_SOURCES = ex2.cpp > adl> check-examples: $(EXTRA_PROGRAMS) > > Or even: > > check_PROGRAMS = ex1

Re: Install question

2002-01-24 Thread Alexandre Duret-Lutz
>>> "Patrick" == Patrick Guio <[EMAIL PROTECTED]> writes: [...] >> check_PROGRAMS = ex1 ex2 >> ex1_SOURCES = ex1.cpp >> ex2_SOURCES = ex2.cpp >> >> This will compile ex1 and ex2 only for `make check'. [...] Patrick> What happens with make install and make dist ? This should distribute

Making PDF files from Texinfo

2002-01-24 Thread Bonzini
This patch adds a "pdf" target that uses pdftex to produce PDF files from the TEXINFOS primary. It is relative to automake 1.5 but, if it is a burden, I'm willing to port it to CVS automake. Paolo Bonzini automake-1.5-pdf.patch Description: Binary data

Automake's include "overrides" makes include?

2002-01-24 Thread Daniel Shane
Hi, I am trying to write a rule that will rebuild a tar.gz of a number of directories when some of the files change. Here is an example of Makefile that works with make : DIRS = project1 project2 RESULT = $(foreach dir,$(DIR),$(dir).tar.gz) all: $(RESULT) $(RESULT): tar xvf $@ ($subst

automake warning using lib_LTLIBRARIES

2002-01-24 Thread Roger Leigh
I'm getting this warning from automake: roger@whinlatter:~/gimp-print/newbuild$ automake automake: both `configure.ac' and `configure.in' present: ignoring `configure.in' automake: src/main/Makefile.am: `libgimpprint.la' is already going to be installed in `lib' I'm sure this is not my fault.

Re: automake warning using lib_LTLIBRARIES

2002-01-24 Thread Raja R Harinath
Roger Leigh <[EMAIL PROTECTED]> writes: > I'm getting this warning from automake: > > roger@whinlatter:~/gimp-print/newbuild$ automake > automake: both `configure.ac' and `configure.in' present: ignoring `configure.in' > automake: src/main/Makefile.am: `libgimpprint.la' is already going to be ins

Re: automake warning using lib_LTLIBRARIES

2002-01-24 Thread Raja R Harinath
Raja R Harinath <[EMAIL PROTECTED]> writes: > Roger Leigh <[EMAIL PROTECTED]> writes: > >> I'm getting this warning from automake: >> >> roger@whinlatter:~/gimp-print/newbuild$ automake >> automake: both `configure.ac' and `configure.in' present: ignoring `configure.in' >> automake: src/main/Make