Thank you Tim,
Aldi
I'll enter that as an enhancement request.
Here's some example code you might adapt for your own makefiles.
DFILES= \
allequal.d asdfasn.d asdfbnd.d asdfinf.d asdfpow.d \
(list rest of .d files)
HFILES=$(patsubst %.d, %.sgml, $(DFILES))
.d.sgml:
doc_to_S $< > $*.sgml
This takes the .d files listed, creates a make variable containing
a list of the same files but with .sgml extension (this is needed
by other parts of the makefile), and
runs doc_to_S to create the corresponding .sgml files which are needed
for the help system.
If patsubst doesn't work for you you might have to create the
list of .sgml files by hand.
========================================================
| Tim Hesterberg Research Scientist |
| timh@insightful.com Insightful Corp. |
| (206)283-8802x319 1700 Westlake Ave. N, Suite 500 |
| (206)283-6310 (fax) Seattle, WA 98109-3044, U.S.A. |
========================================================
Formerly known as MathSoft, Insightful Corporation provides analytical
solutions leveraging S-PLUS, StatServer, and Consulting services
|