RE: dependencies

2008-01-24 Thread Dave Korn
On 23 January 2008 19:19, Marcus Banda wrote: Hello, I'm currently writing a make file for a the compilation of several fortran and c-header files. My problem consists firstly of the fortran modules, which need to be built before and secondly some Fortran files depend on C-header files. How

A query about GNU Make development.

2008-01-24 Thread Shlomi Ben-Zvi
HI, I was wondering if there is a developer GNU Make newsgroup where I can post questions relating to the make code? Many Thanks, Shlomi ___ Help-make mailing list Help-make@gnu.org http://lists.gnu.org/mailman/listinfo/help-make

Make binary distribution for use on a Mac

2008-01-24 Thread Rev. Doug Minton
Good morning, I am working on a project for my congregation implementing a Web-based application linking to a SQLite database. My problem is that I cannot install the Perl modules to run the CGI interface because (for some reason) my iMac (running X 10.4) does not have the 'make' program. I

Re: dependencies

2008-01-24 Thread Stephan Beal
On Jan 24, 2008 2:25 PM, Dave Korn [EMAIL PROTECTED] wrote On 23 January 2008 19:19, Marcus Banda wrote: C-header files. How can I include those dependencies? I didn't find the makedepend nor the sfmakedepend command in my folders. Can anyone help me ? Gcc can output dependencies for

Re: variable expansion (immediate vs deferred)

2008-01-24 Thread Paul Smith
On Sat, 2008-03-15 at 10:36 +0530, chandan wrote: In the above makefile $(LIST) appears in the prerequiste list of both all and .PHONY which happen to be expanded in an immediate context. The output shows that $(LIST) (within commands section) is expanded in the second phase i.e target-update

Re: A query about GNU Make development.

2008-01-24 Thread Paul Smith
On Thu, 2008-01-24 at 13:06 +, Shlomi Ben-Zvi wrote: I was wondering if there is a developer GNU Make newsgroup where I can post questions relating to the make code? Here is fine, or else [EMAIL PROTECTED] -- -

RE: variable expansion (immediate vs deferred)

2008-01-24 Thread Dave Korn
On 15 March 2008 05:06, chandan wrote: Consider the following makefile: LIST := one two three all : $(LIST) Expanded immediately: so the prerequisites are one two three. Changing $(LIST) later will not change the prerequisites of all. @echo $^;

Re: Make binary distribution for use on a Mac

2008-01-24 Thread Paul Smith
On Thu, 2008-01-24 at 08:55 -0600, Rev. Doug Minton wrote: I cannot download the source distribution of make because I don't have make on the computer. You don't need make to build make. The GNU make sources come with a shell script that will build make for you, if you don't have a make. See

Re: Make binary distribution for use on a Mac

2008-01-24 Thread Ken Smith
On Jan 24, 2008 6:55 AM, Rev. Doug Minton [EMAIL PROTECTED] wrote: Is there a binary distribution (even of an archaic version) that you can help me out with? Install Xcode tools from your Mac OS X CD or from Apple Developer Connection (free account required). Xcode tools 3.0 installs make

Help with make on CUPS

2008-01-24 Thread Duke, Charles
You claim that CUPS and the GNU make are fully tested. I tried to use the GNU make (3.81 to compile CUPS. Here are the errors: cups-1.4svn-r7231 make-3.81 AIX 5.3 Please assist. # /usr/local/bin/make Making all in cups... Compiling adminutil.c... In file included from globals.h:31,

Re: Help with make on CUPS

2008-01-24 Thread Paul Smith
On Thu, 2008-01-24 at 15:34 -0600, Duke, Charles wrote: You claim that CUPS and the GNU make are fully tested. I tried to use the GNU make (3.81 to compile CUPS. Here are the errors: cups-1.4svn-r7231 make-3.81 AIX 5.3 Please assist. Hi Charles; This mailing list (help-make) is for

Second jobserver?

2008-01-24 Thread gmail
Hi All, Currently I work on basic distributed build system and found that scaling local and external resource is little tricky. I base on basic idea to run preprocessor locally and push his output to remote node for compilation. My problem is that currently gmake could control only one job group