Re: Dependencies in a single Makefile.am

2006-07-14 Thread Simon Richter
Hi, Hugo de Paix de Coeur schrieb: I build two libraries in a single Makefile.am: If they are in the same Makefile.am, you can simply point the _LIBADD to the .la file without a path (since you already are in the build directory), this will also take care of _DEPENDENCIES. Simon

Re: Main prog is configure-generated?

2006-07-14 Thread Stepan Kasal
Hello, On Thu, Jul 13, 2006 at 01:17:37PM -0700, Micah J. Cowan wrote: > it in bin_PROGRAMS is wrong: it assumes it should build it from [*.c] yes, you should use bin_SCRIPTS for scripts; ``programs'' are assumed to be compiled. > 1) What is an appropriate setup when the primary "binary" file is

Re: finding the location of header (.h) files

2006-07-14 Thread Stepan Kasal
Hello, On Fri, Jul 14, 2006 at 02:23:36PM +1000, mick wrote: > I have an application that depends on gtkhtml-2.0, which seems to be in a > diferent location in almost every linux or BSD distribution. ... > INCLUDES = -I/usr/include/gtkhtml-2.0 many people use pkg-config to solve this. The gtkht