Re: pattern rules

2008-03-27 Thread Ralf Hemmecke
* Ralf Hemmecke wrote on Wed, Mar 26, 2008 at 10:49:35AM CET: pattern rules are forbidden by automake, but I have the following problem. They are not forbidden. They are unportable to non-GNU make, and automake may not fully understand them, but other than that, there is no problem (and there

Re: pattern rules

2008-03-27 Thread Ralf Wildenhues
* Ralf Hemmecke wrote on Thu, Mar 27, 2008 at 12:05:34PM CET: > > Makefile.am:8: `%'-style pattern rules are a GNU make extension > autoreconf: automake failed with exit status: 1 > Is there something wrong with > > AM_INIT_AUTOMAKE([-Wall -Werror]) As of Automake 1.10, -Wall includes -Wportabili

Re: pattern rules

2008-03-27 Thread Ralf Hemmecke
On 03/27/2008 01:11 PM, Ralf Wildenhues wrote: * Ralf Hemmecke wrote on Thu, Mar 27, 2008 at 12:05:34PM CET: Makefile.am:8: `%'-style pattern rules are a GNU make extension autoreconf: automake failed with exit status: 1 Is there something wrong with AM_INIT_AUTOMAKE([-Wall -Werror]) As of

Are dependency lists statically defined?

2008-03-27 Thread John Calcote
Hi all, Over the last couple of months, I've seen a number of people asking questions "around" the topic of building dependency lists. I say "around" because often the question isn't directly related to a particular file list such as: include_HEADERS = file1.h file2.h ... fileN.h But very often,

Re: pattern rules

2008-03-27 Thread Ralf Wildenhues
* Ralf Hemmecke wrote on Thu, Mar 27, 2008 at 01:31:36PM CET: > > -W CATEGORY > --warnings=category > Output warnings falling in category. category can be one of: > ... > portability > portability issues (e.g., use of make features that are > known to be not portable) >

Re: install mingwm10.dll

2008-03-27 Thread Bob Rossi
On Wed, Mar 26, 2008 at 03:28:26PM -0400, Bob Rossi wrote: > Hi, > > I want to install mingwm10.dll, since my program requires it. I'm trying > to figure out the best way to do this. The dll lives in /c/mingw/bin. > > Would > bin_DATA=/c/mingw/bin/mingwm10.dll > make the most sense? Any suggest

Re: Are dependency lists statically defined?

2008-03-27 Thread Ralf Wildenhues
Hello John, * John Calcote wrote on Thu, Mar 27, 2008 at 03:03:25PM CET: > > include_HEADERS = file1.h file2.h ... fileN.h > > But very often, these lists will contain shell expansions, like this: > > if ENABLED_ADDED_FUNCTIONALITY_A > added_functionality_a = fileX.h fileY.h > endif > > incl

Re: install mingwm10.dll

2008-03-27 Thread Ralf Wildenhues
Hi Bob, * Bob Rossi wrote on Thu, Mar 27, 2008 at 06:55:26PM CET: > On Wed, Mar 26, 2008 at 03:28:26PM -0400, Bob Rossi wrote: > > > > I want to install mingwm10.dll, since my program requires it. I'm trying > > to figure out the best way to do this. The dll lives in /c/mingw/bin. > > > > Would

Re: install mingwm10.dll

2008-03-27 Thread Bob Rossi
On Thu, Mar 27, 2008 at 11:51:31PM +0100, Ralf Wildenhues wrote: > Hi Bob, > > * Bob Rossi wrote on Thu, Mar 27, 2008 at 06:55:26PM CET: > > On Wed, Mar 26, 2008 at 03:28:26PM -0400, Bob Rossi wrote: > > > > > > I want to install mingwm10.dll, since my program requires it. I'm trying > > > to fig

Re: install mingwm10.dll

2008-03-27 Thread Ralf Wildenhues
* Bob Rossi wrote on Fri, Mar 28, 2008 at 12:47:25AM CET: > > I want to copy /c/mingw/bin/mingwm10.dll to my bin dir yes. After I do > the make install, I will then use something like NSIS to take the > install dir and make some sort of installation package for windows. > > > Why in the world wou