> I suppose so. I'm not an autoconf guru. > Maybe using @VERSION@ ?? Yes, assign them to suitable variables in configure.ac and use AC_SUBST. configure.ac: [...] FOO=123 AC_SUBST(FOO) [...] ... and then use FOO in Makefile.am as $(FOO). Cheers, Debarshi