Missing file.
authorCarl Hetherington <carl@carlh.net>
Wed, 21 Dec 2011 00:58:12 +0000 (00:58 +0000)
committerCarl Hetherington <carl@carlh.net>
Wed, 21 Dec 2011 00:58:12 +0000 (00:58 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@11041 d708f5d6-7413-0410-9779-e7cbd77b26cf

manual/wscript [new file with mode: 0644]

diff --git a/manual/wscript b/manual/wscript
new file mode 100644 (file)
index 0000000..2e29c0b
--- /dev/null
@@ -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