Re: Removing dependencies

2003-04-04 Thread Raja R Harinath
Hi, Bill Moseley <[EMAIL PROTECTED]> writes: > On Fri, 4 Apr 2003, Raja R Harinath wrote: > >> Hi, >> >> Raja R Harinath <[EMAIL PROTECTED]> writes: >> [snip] >> > $(html_DATA): .html-stamp >> >if test -f $@; then :; else rm -f $<; done >> >> That should read: >> >> if test -f $@; t

Re: Removing dependencies

2003-04-04 Thread Bill Moseley
On Fri, 4 Apr 2003, Raja R Harinath wrote: > Hi, > > Raja R Harinath <[EMAIL PROTECTED]> writes: > [snip] > > $(html_DATA): .html-stamp > > if test -f $@; then :; else rm -f $<; done > > That should read: > > if test -f $@; then :; else rm -f $<; $(MAKE) .html-stamp; done Yes, that

Re: Removing dependencies

2003-04-04 Thread Raja R Harinath
Hi, Raja R Harinath <[EMAIL PROTECTED]> writes: [snip] > $(html_DATA): .html-stamp > if test -f $@; then :; else rm -f $<; done That should read: if test -f $@; then :; else rm -f $<; $(MAKE) .html-stamp; done - Hari -- Raja R Harinath -- [EMAIL PROT

Re: Removing dependencies

2003-04-04 Thread Raja R Harinath
Bill Moseley <[EMAIL PROTECTED]> writes: > I generate HTML docs from other source files. I have a single program > "build" that knows how to generate the docs. So all I need to do is > detect that any one HTML file is out of date and run "build" > > This is suppose to build the HTML docs when ou

Removing dependencies

2003-04-04 Thread Bill Moseley
I generate HTML docs from other source files. I have a single program "build" that knows how to generate the docs. So all I need to do is detect that any one HTML file is out of date and run "build" This is suppose to build the HTML docs when out of date, and install the HTML docs. Here's the

Re: Optimisation across source files.

2003-04-04 Thread Braden McDaniel
On Fri, 04 Apr 2003 21:44:07 +0100, Dr. David Kirkby wrote: > Hi, > I don't know about other programmers, but I tend to put one function > in each source file. So function foo() goes into foo.c. Looking > carefully at the documentation for Sun's c compiler, I not that the > optimiser will on

Optimisation across source files.

2003-04-04 Thread Dr. David Kirkby
Hi, I don't know about other programmers, but I tend to put one function in each source file. So function foo() goes into foo.c. Looking carefully at the documentation for Sun's c compiler, I not that the optimiser will only try to inline functions in the same source file, so my method of o

Re: a general question about config.h files

2003-04-04 Thread Ronald Landheer-Cieslak
On Wed, 2 Apr 2003, Dale E Martin wrote: > > > "make install" clutils is installing it's generated config.h, which has > > ^ > > Don't do that. > Meaning that none of my headers can #inlude "config.h"? That seems > ludicrous to me. OK..