summaryrefslogtreecommitdiff
path: root/more/getting_started/Jamfile.v2
diff options
context:
space:
mode:
authornobody <nobody@localhost>2006-12-31 17:25:40 +0000
committernobody <nobody@localhost>2006-12-31 17:25:40 +0000
commit15bc73a5c5cda179eb9528db3e6e8a3c90018aba (patch)
tree3432fc279c5323628ab74139eb2a7a86ca11ea41 /more/getting_started/Jamfile.v2
parentaea105726b9c2e10f7330be818266257c0ef8318 (diff)
parent91d884201a21e39d99a1d013cae83639641c7013 (diff)
downloadboost-15bc73a5c5cda179eb9528db3e6e8a3c90018aba.tar.gz
This commit was manufactured by cvs2svn to create branch 'RC_1_34_0'.
[SVN r36550]
Diffstat (limited to 'more/getting_started/Jamfile.v2')
-rw-r--r--more/getting_started/Jamfile.v223
1 files changed, 23 insertions, 0 deletions
diff --git a/more/getting_started/Jamfile.v2 b/more/getting_started/Jamfile.v2
new file mode 100644
index 0000000000..770aae934d
--- /dev/null
+++ b/more/getting_started/Jamfile.v2
@@ -0,0 +1,23 @@
+# Copyright David Abrahams 2006. Distributed under the Boost
+# Software License, Version 1.0. (See accompanying
+# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+import docutils ;
+
+import path ;
+sources = [ path.glob . : *.rst ] ;
+bases = $(sources:S=) ;
+
+# This is a path relative to the html/ subdirectory where the
+# generated output will eventually be moved.
+stylesheet = "--stylesheet=../../rst.css" ;
+
+for local b in $(bases)
+{
+ html $(b) : $(b).rst :
+
+ <docutils-html>"--link-stylesheet --traceback --trim-footnote-reference-space --footnote-references=superscript "$(stylesheet)
+ ;
+}
+
+alias htmls : $(bases) ;
+stage . : $(bases) ;