>>>>> "Reinhard" == Reinhard Müller <[EMAIL PROTECTED]> writes:
Reinhard> * What is the proper way of adding -Wall to the gcc options?
It depends.
If you know you'll only ever use gcc then you can put it in AM_CFLAGS.
You could do this in configure.in and use AC_SUBST or you could put it
in each Makefile.am.
If you might use other compilers then you do the same thing but you
check to make sure you are using gcc first. You would do this in
configure.in.
Reinhard> * Why isn't Makefile.in cleaned with make maintainer-clean?
It should be. What version of automake are you using?
Tom