Java

2004-05-11 Thread Thomas Degris
Hello, I am looking for an example of a Makefile.am in Java (without jni, I just want to compile a .jar file). Any suggestions ? Thanks, Thomas

MinGW

2004-07-05 Thread Thomas Degris
Hello, how do I produce a dynamic library (.dll) using automake on MinGW environment with Windows XP ? Thanks, Thomas

Installing libraries

2004-09-07 Thread Thomas Degris
Hello, I would like to know how do I install (by default) all the libraries in $prefix/lib/my_package instead of $prefix/lib. Thanks, Thomas

Configure options

2004-09-21 Thread Thomas Degris
Hello, I guess this is not an automake question but I would like to know how I can disable static build by default (I mean activate the --disable-static by default) when running configure. Thanks, Thomas

Re: Configure options

2004-09-21 Thread Thomas Degris
Thank you very much, Thomas Gary V. Vaughan wrote: Thomas Degris wrote: I guess this is not an automake question but I would like to know how I can disable static build by default (I mean activate the --disable-static by default) when running configure. http://www.gnu.org/software/libtool

Automake and libltdl

2004-10-04 Thread Thomas Degris
Hello, I am using Automake (and autoconf) and libltdl in my package. I would like to know what is the best way to add a --enable-debug option to my configure.ac file to compile my package and the libltdl library with -ggdb3 flag (and most important: remove this -O2 flag which I don't know where

MacOSX Meta-information

2004-12-21 Thread Thomas Degris
Hello, I would like to know if there is some Automake's documentation about how to generate/install a Cocoa .app wrapper (on MacOSX) for interactive program compiled with Automake. Thanks, Thomas

Clean folders

2005-01-17 Thread Thomas Degris
Hello, I would like to know how to clean folders. For example, I would like to clean the folder .build. If I put it in the CLEANFILES variable, then I get this kind of error: rm: can't remove `.build': Is a directory Any hint ? Thanks, Thomas

Re: Clean folders

2005-01-17 Thread Thomas Degris
Thanks, it works. Thomas Stepan Kasal wrote: Hi, On Mon, Jan 17, 2005 at 03:11:50PM +0100, Thomas Degris wrote: rm: can't remove `.build': Is a directory add the following rule: clean-local: rm -rf .build HTH, Stepan Kasal

Re: How to extend automake?

2005-06-07 Thread Thomas Degris
Hello, make dist-deb, dist-ebuild, ... would be nice also and I think it would save lot of time for lot of people. Thomas Harald Dunkel wrote: Tom Howard wrote: Hi Bruno, I used ax_add_mk_macro in ax_dist_rpm.m4 so that in my projects I can run make dist-rpm to create an rpm distrib

Source files generation

2005-07-30 Thread Thomas Degris
Hello, I am trying to build a libtool library that is build from a bunch of generated source files (with a .cxx extension) and a bunch of distributed source files (with a .cpp extension). Until now, I have added only one of the generated cxx files in the BUILD_SOURCE so the cxx files were fir