Clear selection on starting a MIDI note rubberband
[ardour.git] / manual / wscript
1 #!/usr/bin/python
2
3 import os
4
5 top = '.'
6 out = 'build'
7
8 def configure(conf):
9     pass
10
11 def build(bld):
12
13     subst_dict = {}
14     subst_dict['ARDOUR_VERSION'] = bld.env['VERSION']
15
16     obj = bld(features = 'subst')
17     obj.name = 'manual'
18     obj.source = [ 'xml/entities.ent.in' ]
19     obj.target = [ 'ent/entities.ent' ]
20     obj.dict = subst_dict
21
22 def options(opt):
23     pass