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
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
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
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
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
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
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
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..