>>> "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
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
>>> "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
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
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
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.
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
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