Re: Public header files

2010-03-16 Thread Jef Driesen
On 15/03/2010 22:18, Ralf Wildenhues wrote: * Jef Driesen wrote on Sat, Mar 13, 2010 at 11:21:45PM CET: For instance, I prefer to have: typedef foobar ticks_t; instead of: #define ticks_t foobar It might be possible to achieve the same with AC_CONFIG_HEADERS, but I don't know how. I had a lo

Re: Public header files

2010-03-16 Thread Peter Johansson
On 3/16/10 8:29 AM, Jef Driesen wrote: On 15/03/2010 22:18, Ralf Wildenhues wrote: * Jef Driesen wrote on Sat, Mar 13, 2010 at 11:21:45PM CET: I suppose you are referring to solutions like this: m4_define([mylib_version_revision],m4_esyscmd([my_revision_script])) where the revision script fe

Re: build .o files to specific directory using automake

2010-03-16 Thread scleung
I have searched some related threads and seems that it won't work like this way. All suggestions were using VPATH build. So does it possible to change the current directory in configure script to specify the builddir? I also try to override top_builddir variable with AC_SUBST but it seems not wor

Re: build .o files to specific directory using automake

2010-03-16 Thread Ralf Wildenhues
Hello, the message you reply to doesn't seem to have made it to the list, other than to nabble. It would have been helpful if you quote text you reply to: > > Usually makefile generated by automake will compile each source file > > and output .o file in the same directory of the source file. How