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