Hi Henri, * Henri Herscher wrote on Tue, Jan 24, 2006 at 04:49:19PM CET: > > The plugins however are lib_LTLIBRARIES and get installed into /usr/lib. > > I would like the plugins to be installed to say > /usr/lib/myprogram/plugins. How do I do that in Makefile.am ?
Use plugindir = $(pkglibdir) plugin_LTLIBRARIES = ... or just use pkglib_LTLIBRARIES = ... right away. Don't forget `-module' in the respective *_LDFLAGS. Cheers, Ralf