summaryrefslogtreecommitdiff
path: root/manual/wscript
blob: 2e29c0baef1649055107110a611818fa067059b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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