mirror of
https://github.com/boostorg/parameter_python.git
synced 2026-01-24 06:02:12 +00:00
18 lines
395 B
Plaintext
Executable File
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) ;
|