bug#9783: can't use special target .SUFFIXES

2011-10-19 Thread Giulio Rossato
On 10/19/2011 10:53 AM, Stefano Lattarini wrote: On Tuesday 18 October 2011, Giulio Rossato wrote: Putting the following target .SUFFIXES: .c .pc in a Makefile.am doesn't work and I get an error like this: src/Makefile.am:31: use variable `SUFFIXES', not target `.SUFFIXES

bug#9783: can't use special target .SUFFIXES

2011-10-18 Thread Giulio Rossato
Putting the following target .SUFFIXES: .c .pc in a Makefile.am doesn't work and I get an error like this: src/Makefile.am:31: use variable `SUFFIXES', not target `.SUFFIXES' Why does it happen?

bug#7824: 1.11 doesn't add sources with nonstandard suffixes when making a binary

2011-01-13 Thread Юрий Пухальский
Ah, sorry. That's so easy, and now i recollect you must have said this before, but i've lost it... 2011/1/13 ralf.wildenhues : > * Юрий Пухальский wrote on Wed, Jan 12, 2011 at 03:21:11PM CET: >> ----- >> SUFFIXES = .pc >> >> .pc.lo: &

bug#7824: 1.11 doesn't add sources with nonstandard suffixes when making a binary

2011-01-13 Thread ralf.wildenhues
* Юрий Пухальский wrote on Wed, Jan 12, 2011 at 03:21:11PM CET: > - > SUFFIXES = .pc > > .pc.lo: > cp $(srcdir)/$*.pc $(builddir)/$*.c > $(LTCOMPILE) -c $(builddir)/$*.c > rm -f $(builddir)/$*.c > > noinst_PROGRAMS

Re: SUFFIXES does not work?

2003-06-16 Thread Michael Bletzinger
= -I$(top_srcdir)/Lib @QT_CXXFLAGS@ LIBADD = @QT_LIBS@ SUFFIXES = .moc .moc: I'm not a make expert but don't you need to specify the input extension as well as an output. Something like: .hh.moc: Michael @echo "Generating MOC for" $*.hh "..."

SUFFIXES does not work?

2003-06-16 Thread Jose Roman Bilbao
@QT_CXXFLAGS@ LIBADD = @QT_LIBS@ SUFFIXES = .moc .moc: @echo "Generating MOC for" $*.hh "..." @@QT_MOC@ -o $*_moc.cc $*.hh @make $*_moc.o @QT_CXXFLAGS@ @QT_LIBS@ @mv $*_moc.o $*.moc @rm $*_moc.cc It gives no problems when running au

SUFFIXES

2002-06-24 Thread Bob Ham
Hi all, I just upgraded to 1.6 and I'm trying to get SUFFIXES to work. It does work for libtool objects, but just doesn't seem to want to for normal .o's. This is what I have included in my Makefile.am: SUFFIXES = .ui .ui.o: %.h $(UIC) -o $*.cpp -impl $*.h $*.ui

Re: suffixes

2001-11-05 Thread Akim Demaille
Fine, please install. Maybe you want to add some entries to TODO BTW.

Re: suffixes

2001-11-02 Thread Alexandre Duret-Lutz
] > As you can see asm files are not processed! I've searched autoconf > info file for information about SUFFIXES changes and such thing and I > found nothing so this should work. > > Any hints? (btw. it was working fine with older automake) It looks like Automake was hardco

suffixes

2001-10-20 Thread Arkadiusz Miskiewicz
IC.sh SUFFIXES = .asm .asm.lo: $(LIBTOOL) --mode=compile $(STRIP_FPIC) $(NASM) @NASMFLAGS@ $< ### # The hermes library target noinst_LTLIBRARIES = libhermes.la # The hermes library sources libhermes_la

Re: Automake suffixes ordering [patch]

2000-12-23 Thread Kevin Ryde
Tom Tromey <[EMAIL PROTECTED]> writes: > > >>>>> "Kevin" == Kevin Ryde <[EMAIL PROTECTED]> writes: > > Kevin> I find though that I got it wrong for the case where automake > Kevin> isn't automatically generating any suffixes, but

Re: Automake suffixes ordering [patch]

2000-12-21 Thread Tom Tromey
>>>>> "Kevin" == Kevin Ryde <[EMAIL PROTECTED]> writes: Kevin> I find though that I got it wrong for the case where automake Kevin> isn't automatically generating any suffixes, but rather there's Kevin> only user-supplied ones with $(SUFFIXES).

Re: Automake suffixes ordering [patch]

2000-12-21 Thread Kevin Ryde
Tom Tromey <[EMAIL PROTECTED]> writes: > > Thanks, I finally checked this in. Excellent. I find though that I got it wrong for the case where automake isn't automatically generating any suffixes, but rather there's only user-supplied ones with $(SUFFIXES). This comes

Re: Automake suffixes ordering [patch]

2000-12-20 Thread Tom Tromey
>>>>> "Kevin" == Kevin Ryde <[EMAIL PROTECTED]> writes: Kevin> I'd like to propose the patch below to put any $(SUFFIXES) from Kevin> Makefile.am at the head of the .SUFFIXES list in Makefile.in. Thanks, I finally checked this in. Tom

Automake suffixes ordering [patch]

2000-11-04 Thread Kevin Ryde
I'd like to propose the patch below to put any $(SUFFIXES) from Makefile.am at the head of the .SUFFIXES list in Makefile.in. This would help a certain situation in GMP where either a foo.c or foo.s is used, according to the configured target. With the whole .SUFFIXES list sorted, .c is b