RE: gnumake[1]: execvp: /bin/sh: The parameter or environment lists are too long

2007-08-13 Thread Kothanda_Sathya
Its on AIX os, trying to compile driver module which has around 575 *.c file using GNU makefile v3.81. Please note AIX driver compiles 32 and 64 bit object, archived togther as one driver instead of two. This same problem doen't happen on solaris where it compiles 32 and 64 bit has separate driver

Single-suffix rules broken?

2007-08-13 Thread Ludovic Courtès
Hi, I'm trying to use the following single-suffix rule: .SUFFIXES = .in .in: echo dot-in My understanding is that the rule should be triggered whenever there exists a file whose name is equal to the target name plus the `.in' suffix. For instance, make foo should trigger the

RE: Single-suffix rules broken?

2007-08-13 Thread Martin Dorey
.SUFFIXES = .in Your makefile works for me (with make foo, given a foo.in) if I change that line to read: .SUFFIXES: .in -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ludovic Courtès Sent: Sunday, August 12, 2007 00:30 To: bug-make@gnu.org

Re: Single-suffix rules broken?

2007-08-13 Thread Daniel Leidert
Am Sonntag, den 12.08.2007, 09:29 +0200 schrieb Ludovic Courtès: I'm trying to use the following single-suffix rule: .SUFFIXES = .in ^ ^ I think, you mixed some syntax here. It's either SUFFIXES = .in for automake-processed files or (and this is AFAIK created from the above