Files
parameter/doc/Jamfile.v2
Dave Abrahams ce61d9a968 Initial checkin
[SVN r29942]
2005-07-08 06:17:27 +00:00

18 lines
395 B
Plaintext
Executable File

import docutils ;
path-constant docutils-css : ../../iterator/doc/default.css ;
import path ;
sources = [ path.glob . : *.rst ] ;
bases = $(sources:S=) ;
for local b in $(bases)
{
html $(b) : $(b).rst :
<docutils-html>"-gdt --traceback --trim-footnote-reference-space --embed-stylesheet --stylesheet-path="$(docutils-css)
;
}
alias htmls : $(bases) ;
stage html : $(bases) ;