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