Re: need help in "deep" project ..

2007-07-03 Thread Bob Proulx
Ralf Wildenhues wrote: > * Roberto Alejandro Espí Muñoz wrote: > > AC_INIT([/src/main.cpp]) > > Also note that there is a new form of AC_INIT/AM_INIT_AUTOMAKE, > used and explained in the manual: > To give an example, try using this in

Re: need help in "deep" project ..

2007-07-03 Thread Ralf Wildenhues
I forgot: > * Roberto Alejandro Espí Muñoz wrote on Tue, Jul 03, 2007 at 07:11:43PM CEST: > > > AUTOMAKE_OPTIONS = foreign This belongs in the toplevel Makefile.am (or, alternatively, if you use the new style AM_INIT_AUTOMAKE invocation, in configure.ac like this: AM_INIT_AUTOMAKE([foreign])

Re: need help in "deep" project ..

2007-07-03 Thread Ralf Wildenhues
* Roberto Alejandro Espí Muñoz wrote on Tue, Jul 03, 2007 at 07:11:43PM CEST: > > AC_INIT([/src/main.cpp]) Please remove the leading slash: AC_INIT([src/main.cpp]) Also note that there is a new form of AC_INIT/AM_INIT_AUTOMAKE, used and explained in the manual:

need help in "deep" project ..

2007-07-03 Thread Roberto Alejandro Espí Muñoz
I read the tutorial pertaining automake and it is a great way to create automated build projects and portable also. Great Work !!! I want to convert my Eclipse make project to an automake project. I saw the examples listed in the tutorial but I didn't see one where there would be subdirectories