On Fri, 2005-04-08 at 14:22 -0400, Simon Perreault wrote: > Hi, > > In my package I build numerous libraries and programs and the installation > method given by bin_PROGRAMS and lib_LTLIBRARIES works perfectly. However, I > now have a program that can't be installed in $(bindir). It must be installed > in $prefix/some/where/else. How can I do that?
In a Makefile.am: myxxxdir = somedirectory myxxx_PROGRAMS = myprogram Ralf
