summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-12-21 00:58:12 +0000
committerCarl Hetherington <carl@carlh.net>2011-12-21 00:58:12 +0000
commite0e2d2a0618e735f88dcfe8045a6829d3a141887 (patch)
tree43f13846e5c24989eaa3f8d28ac59dfc6a31881d /manual
parente62e94b63c2ca32db6f3d790e58ef18d8528ea53 (diff)
Missing file.
git-svn-id: svn://localhost/ardour2/branches/3.0@11041 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'manual')
-rw-r--r--manual/wscript23
1 files changed, 23 insertions, 0 deletions
diff --git a/manual/wscript b/manual/wscript
new file mode 100644
index 0000000000..2e29c0baef
--- /dev/null
+++ b/manual/wscript
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+
+import os
+
+top = '.'
+out = 'build'
+
+def configure(conf):
+ pass
+
+def build(bld):
+
+ subst_dict = {}
+ subst_dict['ARDOUR_VERSION'] = bld.env['VERSION']
+
+ obj = bld(features = 'subst')
+ obj.name = 'manual'
+ obj.source = [ 'xml/entities.ent.in' ]
+ obj.target = [ 'ent/entities.ent' ]
+ obj.dict = subst_dict
+
+def options(opt):
+ pass