Hello, On Mon, Jan 08, 2007 at 03:09:13PM +0000, Alan Larkin wrote: > Tim Van Holder wrote: > > # Not sure if this is needed for automake; but it's needed by GNU make > > # (without it it will not try the .cpp.i rule). > > .SUFFIXES: .i
this is what make understands, Automake writes it to Makefile.in automatically. Do not override it in Makefile.am. > SUFFIXES = .i This is how one tells Automake about additional suffixes. But if the suffixes has the standard form (one dot, then some non-dot characters), then Automake recognizes it, so the SUFFIXES variable is not necessary (though harmless). Have a nice day, Stepan Kasal