* Ralf Hemmecke wrote on Thu, Mar 27, 2008 at 12:05:34PM CET: > > Makefile.am:8: `%'-style pattern rules are a GNU make extension > autoreconf: automake failed with exit status: 1
> Is there something wrong with > > AM_INIT_AUTOMAKE([-Wall -Werror]) As of Automake 1.10, -Wall includes -Wportability. So use -Wall -Wno-portability -Werror instead. Quoting from NEWS: | - `-Wportability' has finally been turned on by default for `gnu' and | `gnits' strictness. This means, automake will complain about %-rules | or $(GNU Make functions) unless you switch to `foreign' strictness or | use `-Wno-portability'. Cheers, Ralf