Re: problem to use autoconf/automake

2005-04-28 Thread Stepan Kasal
Hello, On Tue, Apr 26, 2005 at 01:22:32PM +0200, Nicolas Haller wrote: SUBDIRS = whatever_dirs_live_under_src oh well, this was not exactly expressed. List only the subdirectories which contain Makefile.am. The SUBDIRS variable links the Makefiles together. HTH, Stepan

Re: problem to use autoconf/automake

2005-04-26 Thread Ralf Wildenhues
* Nicolas Haller wrote on Tue, Apr 26, 2005 at 10:00:50AM CEST: On Tue, Apr 26, 2005 at 07:48:57AM +0200, Ralf Wildenhues wrote: Well, put SUBDIRS = whatever_dirs_live_under_src into src/Makefile.am. Don't forget to mention all to-be-generated Makefiles in the AC_CONFIG_FILES macro

Re: problem to use autoconf/automake

2005-04-26 Thread Keith MARSHALL
Nicolas Haller wrote: If I understand, Makefile.in are generated with informations enclosed in Makefile.am. But I have no Makefile.am in subdirs of src/. I have only sources files (.hh and .cc), and nothing to do with these (but object file to build the program define in src/Makefile.am).

Re: problem to use autoconf/automake

2005-04-26 Thread Nicolas Haller
Ok so I take my Makefile.am from build/ to src/ and create an build directory where I execute the configure script. Thanks all for your useful help, -- Nicolas Haller ___ Autoconf mailing list Autoconf@gnu.org

problem to use autoconf/automake

2005-04-25 Thread Nicolas Haller
Good day, I am writing a program in C++ and I want to use autotools to help me to build my program. But I have a problem but I don't know if it's an automake or an autoconf problem. I have organized my working directory in some subdirectory. It's look like this: RSA | \build |Makefile.am

Re: problem to use autoconf/automake

2005-04-25 Thread Stepan Kasal
Hi, On Mon, Apr 25, 2005 at 08:43:40PM +0200, Nicolas Haller wrote: But I have a problem but I don't know if it's an automake or an autoconf problem. ... So I want all object file and program in build directory it's a natural requirement. And you are right, this question ocuppies both the

Re: problem to use autoconf/automake

2005-04-25 Thread Ralf Wildenhues
Hi Nicolas, * Nicolas Haller wrote on Mon, Apr 25, 2005 at 08:43:40PM CEST: I am writing a program in C++ and I want to use autotools to help me to build my program. I have organized my working directory in some subdirectory. It's look like this: Don't do it like this. Don't have a build

Re: problem to use autoconf/automake

2005-04-25 Thread Nicolas Haller
On Mon, Apr 25, 2005 at 10:45:56PM +0200, Ralf Wildenhues wrote: Hi Nicolas, * Nicolas Haller wrote on Mon, Apr 25, 2005 at 08:43:40PM CEST: I am writing a program in C++ and I want to use autotools to help me to build my program. I have organized my working directory in some

Re: problem to use autoconf/automake

2005-04-25 Thread Ralf Wildenhues
* Nicolas Haller wrote on Tue, Apr 26, 2005 at 12:20:49AM CEST: On Mon, Apr 25, 2005 at 10:45:56PM +0200, Ralf Wildenhues wrote: * Nicolas Haller wrote on Mon, Apr 25, 2005 at 08:43:40PM CEST: I am writing a program in C++ and I want to use autotools to help me to build my program.